mirror of
https://github.com/pantor/inja.git
synced 2026-02-20 10:26:25 +00:00
21 lines
334 B
Plaintext
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>
|