this repo has no description
1{% macro toc (t) %}
2{% if t %}
3<div class="toc" id="nav-container">
4 <p class="toc-head">Table of Contents</p>
5 <div id="nav-content" >
6 <ul>
7 {% for h1 in page.toc %}
8 <li>
9 <a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
10 {% if h1.children %}
11 <ul>
12 {% for h2 in h1.children %}
13 <li>
14 <a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
15 </li>
16 {% if h2.children %}
17 <ul>
18 {% for h3 in h2.children %}
19 <li>
20 <a href="{{ h3.permalink | safe }}">{{ h3.title }}</a>
21 {% if h3.children %}
22 <ul>
23 {% for h4 in h3.children %}
24 <li>
25 <a href="{{ h4.permalink | safe }}">{{ h4.title }}</a>
26 </li>
27 {% if h4.children %}
28 <ul>
29 {% for h5 in h4.children %}
30 <li>
31 <a href="{{ h5.permalink | safe }}">{{ h5.title }}</a>
32 {% if h5.children %}
33 <ul>
34 {% for h6 in h5.children %}
35 <li>
36 <a href="{{ h5.permalink | safe }}">{{ h6.title }}</a>
37 </li>
38 {% endfor %}
39 </ul>
40 {% endif %}
41 </li>
42 {% endfor %}
43 </ul>
44 {% endif %}
45 {% endfor %}
46 </ul>
47 {% endif %}
48 </li>
49 {% endfor %}
50 </ul>
51 {% endif %}
52 {% endfor %}
53 </ul>
54 {% endif %}
55 </li>
56 {% endfor %}
57 </ul>
58 </div>
59</div>
60{% endif %}
61{% endmacro %}