stacken-w3-zola/templates/news.html

12 lines
248 B
HTML
Raw Normal View History

{% import "macros.html" as macros %}
{% extends "base.html" %}
{% block content %}
<main>
<h1>{{ section.title }}</h1>
{% for page in section.pages %}
{{ macros::newsitem(item=page) }}
{% endfor %}
</main>
{% endblock content %}