20 lines
392 B
HTML
20 lines
392 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1 class="blocktitle">
|
|
{%- if section.title %}
|
|
{{ section.title }}
|
|
{%- endif -%}
|
|
|
|
{%- if page.title %}
|
|
{{ page.title }}
|
|
{%- endif -%}
|
|
</h1>
|
|
{%- if section.content %}
|
|
{{ section.content | safe }}
|
|
{%- endif -%}
|
|
|
|
{%- if page.content %}
|
|
{{ page.content | safe }}
|
|
{%- endif -%}
|
|
{% endblock content %}
|