summaryrefslogtreecommitdiff
path: root/templates/notes.html
blob: f49e822ee5a752c63e9bb5b0ef111bf0f31ce172 (plain)
1
2
3
4
5
6
7
8
{% extends "base.html" %} {% block body %}
<h1>{{ section.title }}</h1>
<ul>
  {% for page in section.pages %}
  <li><a href="{{ page.permalink | safe }}">... {{ page.title }}</a> ({{ page.date }})</li>
  {% endfor %}
</ul>
{% endblock body %}