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 năm trước cách đây
mục cha
commit
54c3b3e98a
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  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 %}