1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{% extends "base.html" %} {% if page.title %} {% block title%} {{ page.title }} :: {{ super() }} {% endblock title %} {% endif %} {% block content %} <article> <h1>{{ page.title }}</h1> {{ page.content | safe}} </article> {% endblock content %}