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.
24 lines
468 B
HTML
24 lines
468 B
HTML
3 years ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block extra %}
|
||
|
{{ macro::breadcrumbs(page=section) }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<main>
|
||
|
<section>
|
||
|
<h1>{% if section.extra.heading %}
|
||
|
{{ section.extra.heading }}
|
||
|
{% else %}
|
||
|
{{ section.title }}
|
||
|
{% endif %}</h1>
|
||
|
|
||
|
<div class="blocks columns-2 noshadow">
|
||
|
{{ macro::list_posts(section=section, include_expired=true) }}
|
||
|
</div>
|
||
|
|
||
|
{{ section.content | safe }}
|
||
|
</section>
|
||
|
</main>
|
||
|
{% endblock content %}
|