{% 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 fileExists(style) and type == "website" %}
{% endif %}
{% endfor %}
{% endblock %}
{% block body %}{% endblock %}