www.studyforrest.org/theme/templates/page.html
2021-04-28 15:03:16 +02:00

24 lines
510 B
HTML

{% extends "base.html" %}
{% block title %} — {{ page.title }}{% endblock %}
{% block extra_headers %}
{% if page.stylesheets %}
{% for stylesheet in page.stylesheets %}
{{ stylesheet }}
{% endfor %}
{% endif %}
{% if page.javascripts %}
{% for javascript in page.javascripts %}
{{ javascript }}
{% endfor %}
{% endif %}
{% endblock %}
{% block content %}
<article>
<header>
<h1>{{ page.title }}</h1>
</header>
{{ page.content }}
</article>
{% endblock %}