14 lines
353 B
HTML
14 lines
353 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{% if section.title %}{{ section.title }} | {% endif %}{{ config.extra.sitename|safe }}{% endblock title %}
|
|
|
|
{% block head %}
|
|
{% endblock head %}
|
|
|
|
{% block body %}
|
|
<main class="narrower">
|
|
{% if section.title %}<h1>{{ section.title }}</h1>{% endif %}
|
|
{{ section.content | safe }}
|
|
</main>
|
|
{% endblock body %}
|