20 lines
430 B
HTML
20 lines
430 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
<h1>{{ section.title }}</h1>
|
|
{{ macros::latest_news() }}
|
|
</main>
|
|
<aside>
|
|
<h1>År</h1>
|
|
<ul>
|
|
{% for subsection in section.subsections | reverse %}
|
|
{% set item = get_section(path=subsection) %}
|
|
<li>
|
|
<a href="{{item.permalink}}">{{ item.title }} </a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</aside>
|
|
{% endblock content %}
|