12 lines
270 B
HTML
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 %}
|