{% extends "layout.html" %} {% block title %}{{ page.title }}{% endblock %} {% block description %}{{ page.description }}{% endblock %} {% block style %} {### Include theme css before plugins css ###} {% if not fileExists(config.styles.print) %} {% if options.format %} {% else %} {% endif %} {% endif %} {{ super() }} {### Custom stylesheets for the book ###} {% for type, style in config.styles %} {% if fileExists(style) and (type == "ebook" or type == "print" or type == options.format) %} {% endif %} {% endfor %} {% endblock %} {% block body %}
{% block page %}

{{ page.title }}

{{ page.content|safe }}
{% endblock %}
{% endblock %}