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
15{% endblock %}
16{%- block breadcrumbs_aside %}
17  <li class="wy-breadcrumbs-aside">
18    <dark-mode-toggle id="dark-mode-toggle" appearance="three-way" permanent="true"/>
19  </li>
20  <li class="wy-breadcrumbs-aside">
21    {%- if display_gh_links %}
22      {% set gh_blob_url = pagename | gh_link_get_blob_url %}
23      {% if gh_blob_url %}
24        <a href="{{ gh_blob_url }}" class="fa fa-github"> {{ _('Open on GitHub') }}</a>
25      {% endif %}
26      {%- set git_last_updated, sha1 = pagename | git_info | default((None, None), true) %}
27      {%- if sha1 %}
28        <a href="{{ pagename | gh_link_get_open_issue_url(sha1) }}" class="fa fa-bug">
29          {{ _('Report an issue with this page')}}
30        </a>
31      {% endif %}
32    {% endif %}
33  </li>
34{%- endblock %}
35