1{% extends "!breadcrumbs.html" %}
2{% block breadcrumbs %}
3  <!-- {{ docs_title }} -->
4  {# parameterize default name "Docs" in breadcrumb via docs_title in conf.py #}
5  {% if not docs_title %}
6  {% set docs_title = "Docs" %}
7  {% endif %}
8
9  <li><a href="{{ pathto(master_doc) }}">{{ docs_title }}</a> &raquo;</li>
10  {% for doc in parents %}
11     <li><a href="{{ doc.link|e }}">{{ doc.title }}</a> &raquo;</li>
12  {% endfor %}
13  <li>{{ title }}</li>
14{% endblock %}
15