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/breadcrumbs.html
O.S.Tezer b74fa75872 Amend breadcrumbs to link to the section indexes, i.e., home/section/
Docker-DCO-1.1-Signed-off-by: O.S. Tezer <ostezer@gmail.com> (github: ostezer)
2014-04-16 18:20:29 +03:00

11 lines
No EOL
403 B
HTML

<ol class="breadcrumb">
<li><a href="{{ homepage_url }}"><span class="glyphicon glyphicon-home"></span></a></li>
{% for section in nav %}
{% if section.active %}
<li><a href="../">{{ section.title }}</a></li>
{% if section.children %}
<li class="active"><a href="{{ current_page.url }}">{{ current_page.title }}</a></li>
{% endif %}
{% endif %}
{% endfor %}
</ol>