aboutsummaryrefslogtreecommitdiff
path: root/templates/posts.html
blob: dfe0001f23378fc34d4aa7f8447b9f43b29a2f1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% 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 %}