blob: 5b78c59c093dcad855c6837c697e3539a8a50d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "base.html" %}
{% block title -%}
{{ section.title }} | {{ config.title }}
{%- endblock title %}
{% block content %}
<h3 class="title">
{{ section.title }}
</h3>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a>
<span style="font-family: monospace;">({{ page.date }})</span></li>
{% endfor %}
</ul>
{% endblock content %}
|