We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc7e8b commit 2901d99Copy full SHA for 2901d99
docs/_layouts/default.html
@@ -14,5 +14,22 @@
14
</main>
15
16
</body>
17
+<aside class="sidebar">
18
+ <h2>Quick Navigation</h2>
19
+ <ul>
20
+ {% for item in site.sidebar %}
21
+ <li>
22
+ <a href="{{ item.url }}">{{ item.title }}</a>
23
+ {% if item.toc %}
24
25
+ {% for heading in site.pages | where:"path", item.url | map:"headings" %}
26
+ <li><a href="{{ heading.url }}">{{ heading.text }}</a></li>
27
+ {% endfor %}
28
+ </ul>
29
+ {% endif %}
30
+ </li>
31
32
33
+</aside>
34
35
</html>
0 commit comments