mkdocs-material/material/partials/toc.html

15 lines
448 B
HTML
Raw Normal View History

2016-09-23 12:56:25 +03:00
<nav class="md-nav md-nav--secondary">
2017-01-02 10:57:19 +03:00
{% set toc_ = page.toc %}
{% if "\x3ch1 id=" in page.content %}
2017-01-02 10:57:19 +03:00
{% set toc_ = (toc_ | first).children %}
2016-09-23 12:56:25 +03:00
{% endif %}
2017-01-02 10:57:19 +03:00
{% if toc_ and (toc_ | first) %}
2016-09-23 12:56:25 +03:00
<label class="md-nav__title" for="toc">Table of contents</label>
2016-12-29 16:19:26 +03:00
<ul class="md-nav__list" data-md-scrollfix>
2017-01-02 10:57:19 +03:00
{% for toc_item in toc_ %}
2016-09-23 12:56:25 +03:00
{% include "partials/toc-item.html" %}
{% endfor %}
</ul>
{% endif %}
</nav>