| Index: tests/test_site/templates/default.tmpl |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/tests/test_site/templates/default.tmpl |
| @@ -0,0 +1,18 @@ |
| +<!DOCTYPE html> |
|
Vasily Kuznetsov
2016/08/22 10:14:51
This template seems to be not used by any pages th
|
| +<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> |