summaryrefslogtreecommitdiff
path: root/sphinx_rtd_theme/breadcrumbs.html
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-05-11 03:03:21 -0400
committerJordan Wiens <jordan@psifertex.com>2019-05-11 03:03:21 -0400
commitc1adc42bbf31fa3b327f9ee78ff86e6ba0e89bd5 (patch)
tree2e2a35285eaae8a11bf04e2933b5666d49e8ce01 /sphinx_rtd_theme/breadcrumbs.html
parent00018d6ae7a8c4180bdaddd0ca127cff13509aaa (diff)
moving rtd modifications to a submodule, moving to py3 for docs
Diffstat (limited to 'sphinx_rtd_theme/breadcrumbs.html')
-rw-r--r--sphinx_rtd_theme/breadcrumbs.html59
1 files changed, 0 insertions, 59 deletions
diff --git a/sphinx_rtd_theme/breadcrumbs.html b/sphinx_rtd_theme/breadcrumbs.html
deleted file mode 100644
index 2a748df1..00000000
--- a/sphinx_rtd_theme/breadcrumbs.html
+++ /dev/null
@@ -1,59 +0,0 @@
-{# Support for Sphinx 1.3+ page_source_suffix, but don't break old builds. #}
-
-{% if page_source_suffix %}
-{% set suffix = page_source_suffix %}
-{% else %}
-{% set suffix = source_suffix %}
-{% endif %}
-
-{% if meta is defined and meta is not none %}
-{% set check_meta = True %}
-{% else %}
-{% set check_meta = False %}
-{% endif %}
-
-{% if check_meta and 'github_url' in meta %}
-{% set display_github = True %}
-{% endif %}
-
-{% if check_meta and 'bitbucket_url' in meta %}
-{% set display_bitbucket = True %}
-{% endif %}
-
-<div role="navigation" aria-label="breadcrumbs navigation">
- <ul class="wy-breadcrumbs">
- {% block breadcrumbs %}
- <li><a href="{{ pathto(master_doc) }}">Docs</a> &raquo;</li>
- {% for doc in parents %}
- <li><a href="{{ doc.link|e }}">{{ doc.title }}</a> &raquo;</li>
- {% endfor %}
- <li>{{ title }}</li>
- {% endblock %}
- {% block breadcrumbs_aside %}
- <li class="wy-breadcrumbs-aside">
- {% if pagename != "search" %}
- {% if display_github %}
- {% if check_meta and 'github_url' in meta %}
- <!-- User defined GitHub URL -->
- <a href="{{ meta['github_url'] }}" class="fa fa-github"> Edit on GitHub</a>
- {% else %}
- <a href="https://{{ github_host|default("github.com") }}/{{ github_user }}/{{ github_repo }}/blob/{{ github_version }}{{ conf_py_path }}{{ pagename }}{{ suffix }}" class="fa fa-github"> Edit on GitHub</a>
- {% endif %}
- {% elif display_bitbucket %}
- {% if check_meta and 'bitbucket_url' in meta %}
- <!-- User defined Bitbucket URL -->
- <a href="{{ meta['bitbucket_url'] }}" class="fa fa-bitbucket"> Edit on Bitbucket</a>
- {% else %}
- <a href="https://bitbucket.org/{{ bitbucket_user }}/{{ bitbucket_repo }}/src/{{ bitbucket_version}}{{ conf_py_path }}{{ pagename }}{{ suffix }}" class="fa fa-bitbucket"> Edit on Bitbucket</a>
- {% endif %}
- {% elif show_source and source_url_prefix %}
- <a href="{{ source_url_prefix }}{{ pagename }}{{ suffix }}">View page source</a>
- {% elif show_source and has_source and sourcename %}
- <a href="{{ pathto('_sources/' + sourcename, true)|e }}" rel="nofollow"> View page source</a>
- {% endif %}
- {% endif %}
- </li>
- {% endblock %}
- </ul>
- <hr/>
-</div>