book-example/templates/page.html

14 lines
209 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
{% include "chapter.html" %}
{% endblock %}
{% block footer %}
{% include "footer.html" %}
{% endblock %}