2017-01-06 20:48:32 +03:00
|
|
|
{% import "partials/i18n.html" as i18n %}
|
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 %}
|
2016-12-15 20:29:46 +03:00
|
|
|
{% 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) %}
|
2017-01-06 20:48:32 +03:00
|
|
|
<label class="md-nav__title" for="toc">{{ i18n.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 %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
2016-09-30 14:29:45 +03:00
|
|
|
</nav>
|