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