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
This commit is contained in:
StraToN 2019-07-25 15:49:11 +02:00
parent fd7992cd9c
commit 54c3b3e98a
1 changed files with 7 additions and 0 deletions

View File

@ -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 %}