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

15 lines
532 B
HTML
Raw Normal View History

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