Files
docker-cli/components/engine/docs/theme/mkdocs/breadcrumbs.html
O.S.Tezer cd920e0ff9 Amendments providing the "Edit on GitHub" link for docs on master.
Docker-DCO-1.1-Signed-off-by: O.S. Tezer <ostezer@gmail.com> (github: ostezer)
Upstream-commit: 05d7271f91fd29fb75202913fa8caab5f7790718
Component: engine
2014-04-18 00:53:39 +03:00

12 lines
613 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 %}
<li class="pull-right edit-on-github"><a href="https://github.com/dotcloud/docker/blob/master/docs/sources/{{ current_page.input_path }}"><span class="glyphicon glyphicon-edit"></span>Edit on GitHub</a></li>
</ol>