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