1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/docs/theme/mkdocs/toc.html
Sven Dowideit 936a03bfdd move the documentation to markdown
Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> (github: SvenDowideit)

Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> (github: )
2014-04-16 00:02:10 +00:00

13 lines
560 B
HTML

<div id="toc_table" class="bs-sidebar hidden-print" role="complementary">
{% if current_page.title != '**HIDDEN**' %}
<h2>{{ current_page.title }}</h2>
{% endif %}
<h3>TABLE OF CONTENTS</h3>
<ul id="toc_navigation" class="nav bs-sidenav">
{% for toc_item in toc %}
{% for toc_item in toc_item.children %}
<li><a href="{{ toc_item.url }}"><span class="active_icon glyphicon glyphicon-eye-open"></span><span class="passive_icon glyphicon glyphicon-unchecked"></span> {{ toc_item.title }}</a></li>
{% endfor %}
{% endfor %}
</ul>
</div>