summaryrefslogtreecommitdiffstats
path: root/templates/section.html
blob: 4d390aa7032b92c01a09b5a04f93f019eaf809a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "index.html" %}
{% block content %}
  <h1>{{ section.title }}</h1>
  <div>
    {% for page in section.pages %}
      <article>
        <div>
          <h2>
            <a href="{{ page.permalink }}">{{ page.title }}</a>
            -
            <time datetime="{{ page.date | date(format="%Y-%m-%d") }}">
              {{ page.date | date(format="%d %b %Y") }}
            </time>
          </h2>
        </div>
        {% if page.summary %}
          <p>{{ page.summary | safe }}</p>
          <a href="{{ page.permalink }}#continue-reading">...</a>
        {% endif %}
      </article>
    {% endfor %}
  </div>
{% endblock content %}