blob: 147ac2b5052adf369d6119e5a6dfebce05759421 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "base.html" %}
{% block content %}
<h2>{{ section.title }}</h2>
<div class="content">
<p><a href="atom.xml">Feed</a></p>
{% for page in section.pages %}
<p>
{{ page.date }} <a href="{{ page.path }}" class>{{ page.title }}</a>
</p>
{% endfor %}
</div>
{% endblock content %}
|