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
23 lines
674 B
HTML
23 lines
674 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
{% for page in section.pages %}
|
|
<p>
|
|
<h3><a href="{{ page.permalink | safe }}">{{ page.title }}</a></h3>
|
|
</p>
|
|
{% endfor %}
|
|
|
|
{% for sub in section.subsections %}
|
|
{% set subsection = get_section(path=sub) %}
|
|
<p>
|
|
<h2><a href="{{ subsection.permalink | safe }}">{{ subsection.title }}</a></h2>
|
|
{% for page in subsection.pages %}
|
|
<p>
|
|
<h3 style="margin-left:1em"><a href="{{ page.permalink | safe }}">{{ page.title }}</a></h3>
|
|
</p>
|
|
{% endfor %}
|
|
</p>
|
|
{% endfor %}
|
|
</main>
|
|
{% endblock content %}
|