16 lines
530 B
HTML
Raw Normal View History

2017-01-13 00:31:37 +01:00
{% import "partials/language.html" as lang %}
2016-09-23 11:56:25 +02:00
<nav class="md-nav md-nav--secondary">
2017-01-02 08:57:19 +01:00
{% set toc_ = page.toc %}
{% if toc_ | first is defined and "\x3ch1 id=" in page.content %}
2017-01-02 08:57:19 +01:00
{% set toc_ = (toc_ | first).children %}
2016-09-23 11:56:25 +02:00
{% endif %}
{% if toc_ | first is defined %}
2017-01-13 00:31:37 +01:00
<label class="md-nav__title" for="toc">{{ lang.t('toc.title') }}</label>
2016-12-29 14:19:26 +01:00
<ul class="md-nav__list" data-md-scrollfix>
2017-01-02 08:57:19 +01:00
{% for toc_item in toc_ %}
2016-09-23 11:56:25 +02:00
{% include "partials/toc-item.html" %}
{% endfor %}
</ul>
{% endif %}
</nav>