From 1b1c96f67837e62ccb681189699b1c6232888b84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20R=C3=BCth?= Date: Wed, 26 Jan 2022 01:09:59 -0500 Subject: [PATCH] Work around https://github.com/readthedocs/sphinx_rtd_theme/issues/765 --- doc/_templates/breadcrumbs.html | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 doc/_templates/breadcrumbs.html diff --git a/doc/_templates/breadcrumbs.html b/doc/_templates/breadcrumbs.html new file mode 100644 index 00000000..19c3deb3 --- /dev/null +++ b/doc/_templates/breadcrumbs.html @@ -0,0 +1,7 @@ +{%- extends "sphinx_rtd_theme/breadcrumbs.html" %} + +{% block breadcrumbs_aside %} + {% if pagename not in ['genindex'] %} + {{ super() }} + {% endif %} +{% endblock %}