summaryrefslogtreecommitdiffstats
path: root/templates/directory.html
blob: c4130fb487f51b26f68276bc3d936c5c070591a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}

{% block content %}
{% for page in section.pages %}
<article>
	 {{ page.date }} : <a href="{{ page.permalink | safe }}">{{ page.title }}</a>
</article>
{% endfor %}
{% endblock content %}
remember that computers suck.