mkdocs-material/material/partials/toc.html
2016-09-23 11:56:25 +02:00

13 lines
370 B
HTML

<nav class="md-nav md-nav--secondary">
{% if h1 %}
{% set toc = (toc | first).children %}
{% endif %}
{% if toc and (toc | first) %}
<label class="md-nav__title" for="toc">Table of contents</label>
<ul class="md-nav__list">
{% for toc_item in toc %}
{% include "partials/toc-item.html" %}
{% endfor %}
</ul>
{% endif %}
</nav>