aboutsummaryrefslogtreecommitdiff
path: root/test/data/html/template.txt
blob: b471e740aefbc692945c86b6004f7e1fa79625b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>