fmartingr.com/templates/page.html
2020-01-12 20:26:01 +01:00

12 lines
270 B
HTML

{% extends "_base.html" %}
{% block page_title %}{{ this.title }} | {{ super() }}{% endblock %}
{% block body_class %}{{ this.title|lower }}{% endblock %}
{% block main_content %}
<h2>{{ this.title }}</h2>
<div class="center">
{{ this.body }}
</div>
{% endblock %}