forked from hacc/haccfiles
24 lines
674 B
HTML
24 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 %}
|