packages feed

haiji-0.3.2.0: example.tmpl

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
  <title>My Webpage</title>
</head>
<body>
  <ul id="navigation">
    {% for item in navigation %}
    <li><a href="{{ item.href }}">{{ item.caption }}</a></li>
    {% endfor %}
  </ul>

  <h1>My Webpage</h1>
  {% include "content.tmpl" %}
</body>
</html>