docs/blog/overrides/partials/content.html

21 lines
605 B
HTML

<link rel="stylesheet" href="{{ 'assets/stylesheets/content.css' | url }}" />
<!-- based on https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/partials/content.html -->
{% if page.toc %}
{% for toc_item in page.toc %}
<h1 id="{{ toc_item.url[1::] }}">
{{ toc_item.title }}
<a class="headerlink" href="{{ toc_item.url }}" title="Permanent link"></a>
</h1>
{% endfor %}
{% elif page.title %}
<h1>
{{ page.title }}
</h1>
{% endif %}
{% include "partials/source-file.html" %}
<!-- Page content -->
{{ page.content }}