{% extends "layout.html" %}
{% block head %}
{{ super() }}
{% endblock %}
{% block style %}
{# Include theme css before plugins css #}
{{ super() }}
{# Custom stylesheets for the book #}
{% for type, style in config.styles %}
{% if style|fileExists and style == "website" %}
{% endif %}
{% endfor %}
{% endblock %}
{% block body %}{% endblock %}