|
|
|
@ -144,33 +144,35 @@
|
|
|
|
|
{# Optional table of contents #}
|
|
|
|
|
{% if page.extra.toc | default(value=false) %}
|
|
|
|
|
{% if page.toc %}
|
|
|
|
|
<h2>Table of Contents</h2>
|
|
|
|
|
<ul>
|
|
|
|
|
{% for h1 in page.toc %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
|
|
|
|
|
{% if h1.children %}
|
|
|
|
|
<ul>
|
|
|
|
|
{% for h2 in h1.children %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
{% if h2.children %}
|
|
|
|
|
<div class="toc-container">
|
|
|
|
|
<h2>Table of Contents</h2>
|
|
|
|
|
<ul>
|
|
|
|
|
{% for h1 in page.toc %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
|
|
|
|
|
{% if h1.children %}
|
|
|
|
|
<ul>
|
|
|
|
|
{% for h3 in h2.children %}
|
|
|
|
|
{% for h2 in h1.children %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ h3.permalink | safe }}">{{ h3.title }}</a>
|
|
|
|
|
<a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
{% if h2.children %}
|
|
|
|
|
<ul>
|
|
|
|
|
{% for h3 in h2.children %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ h3.permalink | safe }}">{{ h3.title }}</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|