12 lines
248 B
HTML
12 lines
248 B
HTML
|
|
{% 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 %}
|