blob: cae39d34e333a49e31b41a4ea5cd4c0dc77e1992 (
plain)
1
2
3
4
5
6
7
8
9
|
{% extends "base.html" %}
{% block content %}
{{ section.content | safe }}
<ul>
{% for post in section.pages %}
<li><a href="{{ post.permalink }}">{{ post.title }} -- {{ post.date }}</a></li>
{% endfor %}
</ul>
{% endblock %}
|