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