summaryrefslogtreecommitdiff
path: root/tests/examplefiles/cheetah_example.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/cheetah_example.html')
-rw-r--r--tests/examplefiles/cheetah_example.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/examplefiles/cheetah_example.html b/tests/examplefiles/cheetah_example.html
new file mode 100644
index 00000000..e2a0f477
--- /dev/null
+++ b/tests/examplefiles/cheetah_example.html
@@ -0,0 +1,13 @@
+<html>
+ <head><title>$title</title></head>
+ <body>
+ <table>
+ #for $client in $clients
+ <tr>
+ <td>$client.surname, $client.firstname</td>
+ <td><a href="mailto:$client.email">$client.email</a></td>
+ </tr>
+ #end for
+ </table>
+ </body>
+</html>