diff options
Diffstat (limited to 'deps/inja/test/data/html/template.txt')
-rw-r--r-- | deps/inja/test/data/html/template.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/deps/inja/test/data/html/template.txt b/deps/inja/test/data/html/template.txt new file mode 100644 index 0000000..b471e74 --- /dev/null +++ b/deps/inja/test/data/html/template.txt @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> + {% include "header.txt" %} + <body> + <h1>{{ title }}</h1> + <small>Written by {{ author }}</small> + + <p>{{ content }}</p> + <small>{{ views }} views</small> + + <h5>Tags</h5> + <ul> +## for tag in tags + <li>{{ tag }}</li> +## endfor + </ul> + + {% include "footer.txt" %} + </body> +</html> |