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