You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
343 B
HTML
18 lines
343 B
HTML
4 years ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block extra %}
|
||
|
{{ macro::breadcrumbs(page=section) }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<main>
|
||
|
<section class="centering">
|
||
|
<h1>{{ section.title }}</h1>
|
||
|
{{ section.content | safe }}
|
||
|
</section>
|
||
|
<section class="people-list">
|
||
|
{{ macro::list_people() }}
|
||
|
</section>
|
||
|
</main>
|
||
|
{% endblock content %}
|