stacken-w3-zola/templates/news-root.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 %}