Newer
Older
<main class="w3-container w3-margin-mobile">
<div class="page w3-container w3-content w3-padding-64">
<h2>PAGES</h2>
{% for article in section.pages %}
<a href="{{ article.permalink }}"><h3>{{ article.title }}</h3></a>
{% endfor %}
{% endif %}
<hr>
<h2>SUBSECTIONS</h2>
{% for section in section.subsections %}
{% set section = get_section(path=section, metadata_only=true) %}
<a href="{{ section.permalink }}"><h3>{{ section.title }}</h3></a>
{% endfor %}
{% endif %}