cement/docs/source/_templates/layout.html

14 lines
390 B
HTML
Raw Permalink Normal View History

2017-11-29 03:42:32 +00:00
{# Import the theme's layout. #}
{% extends "!layout.html" %}
{% block breadcrumbs %}
<div role="navigation" aria-label="breadcrumbs navigation">
<ol class="breadcrumb">
{% for doc in parents %}
<li><a href="{{ doc.link|e }}">{{ doc.title }}</a></li>
{% endfor %}
<li>{{ title }}</li>
</ol>
</div>
{% endblock %}