1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
---
title: {{ module.modulename if module else "API Reference" }}
---
<div>
{% block content %}{% endblock %}
{% filter minify_css %}
{% block style %}
{#
The important part is that we leave out layout.css here.
Ideally we would still include Bootstrap Reboot, but that breaks mkdocs' theme.
<style>{% include "resources/bootstrap-reboot.min.css" %}</style>
#}
<style>{% include "syntax-highlighting.css" %}</style>
<style>{% include "theme.css" %}</style>
<style>{% include "content.css" %}</style>
{% endblock %}
{% endfilter %}
</div>
|