Files
inja/test/data/html/template.txt
2020-06-27 17:05:56 +02:00

21 lines
334 B
Plaintext

<!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>