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.
19 lines
331 B
HTML
19 lines
331 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block extra %}
|
|
{{ macro::breadcrumbs(page=page) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
<section>
|
|
<h1>{% if page.extra.heading %}
|
|
{{ page.extra.heading }}
|
|
{% else %}
|
|
{{ page.title }}
|
|
{% endif %}</h1>
|
|
{{ page.content | safe }}
|
|
</section>
|
|
</main>
|
|
{% endblock content %}
|