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/autoindex.html
Sven Dowideit 687215c32f Turn off editing for auto-generated index pages, and scroll the user to the right section
Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@docker.com> (github: SvenDowideit)
2014-10-13 16:32:18 +10:00

15 lines
291 B
HTML

no_edit: true
auto_scroll_to_path: true
# Table of Contents
{% for nav_item in nav %}
{% if nav_item.children %}
## {{ nav_item.title }} {{ nav_item.url }}
{% for nav_item in nav_item.children %}
- [{{ nav_item.title }}]({{ nav_item.url }})
{% endfor %}
{% endif %}
{% endfor %}