site/templates/river.html

19 lines
473 B
HTML

{% extends "section.html" %}
{% block section_listing %}
{% for page in section.pages %}
<div class="article">
<div class="header" id="news-item-{{ loop.index }}">
<h2>
<a href="{{ page.permalink }}">{{ page.title }}</a>
</h2>
<p class="date">
<span class="time">
{{ page.date }}
</span>
</p>
</div>
{{ page.content | safe }}
</div>
{% endfor %}
{% endblock section_listing %}