summaryrefslogtreecommitdiffstats
path: root/templates/section.html
blob: aa120aab3d6123c019968b822abee04cb7bc319c (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "index.html" %}
{% block content %}
  {{ super() }}
  <ul class="simple">
    {% for item in section.pages %}
      <li>
        <article>{{ macros::header(item=item) }}</article>
      </li>
    {% endfor %}
  </ul>
{% endblock content %}