forked from hacc/haccfiles
stuebinm
41d82ae436
we decided to: - get rid of unused packages - simpify the directory layout since we only have one host anyways - move our docs (such as they are) in-tree
15 lines
337 B
HTML
15 lines
337 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
<h1>{{ section.title }}</h1>
|
|
<p>{{ section.content | safe }}</p>
|
|
<p>Pages in section</p>
|
|
<ul>
|
|
{% for page in section.pages | reverse %}
|
|
<li>
|
|
<em> <a href="{{ page.permalink }}"> {{ page.title }} </a> </em>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock content %}
|