summaryrefslogtreecommitdiffstats
path: root/templates/section.html
blob: b18fde2a3f59a5b64f535cc2995d3fd0a78d0ee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "index.html" %}
{% block content %}
  {{ super() }}
  <ul class="simple">
    {% for item in section.pages %}
      <li>
        <article>
          {{ macros::header(item=item) }}
          {% if item.summary %}
            <p>
              {{ item.summary | safe }}<a href="{{ item.permalink }}#continue-reading">...</a>
            </p>
          {% endif %}
        </article>
      </li>
    {% endfor %}
  </ul>
{% endblock content %}