Files
docker-cli/components/engine/docs/theme/mkdocs/breadcrumbs.html
Sven Dowideit 0bb55ea3f4 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: )
Upstream-commit: 936a03bfddb24cd45f5f12c20a961bf2ae6ede93
Component: engine
2014-04-16 00:02:10 +00:00

15 lines
532 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 %}
{% 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>