mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 20:16:48 +00:00
14 lines
390 B
HTML
14 lines
390 B
HTML
{# 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 %}
|