Index: cms/tests/test_site/templates/default.tmpl |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/cms/tests/test_site/templates/default.tmpl |
@@ -0,0 +1,18 @@ |
+<!DOCTYPE html> |
+<html lang="en"> |
+ <head> |
+ <title>My Webpage</title> |
+ </head> |
+ <body> |
+ <ul id="navigation"> |
+ {% for item in navigation %} |
+ <li><a href="{{ item.href }}">{{ item.caption }}</a></li> |
+ {% endfor %} |
+ </ul> |
+ |
+ <h1>My Webpage</h1> |
+ {{ a_variable }} |
+ |
+ {# a comment #} |
+ </body> |
+</html> |