1 2 3 4 5 6 7 8 9 10 11 12 13
{% extends "base.html" %} {% block title %} {{ page['title'] }} {% endblock %} {% block container %} <main class="container mt-4 content"> {% if not page["no_h1"] %}<h1>{{ page['title'] }}</h1>{% endif %} {{ page.html | safe }} </main> {% endblock %}