15 lines
317 B
HTML
15 lines
317 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1 class="title">
|
|
{{ section.title }}
|
|
</h1>
|
|
<ul id="posts">
|
|
{% for page in section.pages %}
|
|
<li>
|
|
<span class="post-date">{{ page.date }}</span>
|
|
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock content %}
|