Browse Source

Adds a breadcrumb template to manage hiding 'Edit on Github' link.
To work, requires adding a meta the very beginning of files that have to hide this link:
:github_url: hide

StraToN 6 years ago
parent
commit
54c3b3e98a
1 changed files with 7 additions and 0 deletions
  1. 7 0
      _templates/breadcrumbs.html

+ 7 - 0
_templates/breadcrumbs.html

@@ -0,0 +1,7 @@
+{%- extends "sphinx_rtd_theme/breadcrumbs.html" %}
+
+{% block breadcrumbs_aside %}
+{% if not meta or meta.get('github_url') != 'hide' %}
+{{ super() }}
+{% endif %}
+{% endblock %}