mkdocs-material/material/partials/toc.html

30 lines
1.1 KiB
HTML
Raw Normal View History

2017-01-13 02:31:37 +03:00
{% import "partials/language.html" as lang %}
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 toc_ | first is defined and "\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 %}
{% if toc_ | first is defined %}
2017-06-01 23:17:08 +03:00
<label class="md-nav__title" for="toc">{{ lang.t("toc.title") }}</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 %}
{% if page.meta.source and page.meta.source | length > 0 %}
<li class="md-nav__item">
<a href="#__source" title="{{ lang.t('meta.source') }}" class="md-nav__link md-nav__link--active">
2017-06-01 23:17:08 +03:00
{{ lang.t("meta.source") }}
</a>
</li>
{% endif %}
{% if config.extra.disqus and not page.is_homepage %}
<li class="md-nav__item">
<a href="#__comments" title="{{ lang.t('meta.comments') }}" class="md-nav__link md-nav__link--active">
2017-06-01 23:17:08 +03:00
{{ lang.t("meta.comments") }}
</a>
</li>
{% endif %}
2016-09-23 12:56:25 +03:00
</ul>
{% endif %}
</nav>