1 2 3 4 5 6 7 8 9 10 11 12
{% extends "base.html" %} {% block title%} {{ page.title }} - {{ super() }} {% endblock title %} {% block content %} <h1 style="text-align: center; margin-top: 1em;">{{ page.title }}</h1> <article> {{ page.content | safe }} </article> {% endblock content %}