From 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 20:24:20 +0200 Subject: Adding upstream version 14.2.21. Signed-off-by: Daniel Baumann --- doc/_templates/layout.html | 5 +++++ doc/_templates/page.html | 21 +++++++++++++++++++++ doc/_templates/smarttoc.html | 16 ++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 doc/_templates/layout.html create mode 100644 doc/_templates/page.html create mode 100644 doc/_templates/smarttoc.html (limited to 'doc/_templates') diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html new file mode 100644 index 00000000..c6f57096 --- /dev/null +++ b/doc/_templates/layout.html @@ -0,0 +1,5 @@ +{% extends "!layout.html" %} + +{%- block extrahead %} + +{% endblock %} diff --git a/doc/_templates/page.html b/doc/_templates/page.html new file mode 100644 index 00000000..cfcf309b --- /dev/null +++ b/doc/_templates/page.html @@ -0,0 +1,21 @@ +{% extends "!page.html" %} +{% block body %} + + + + + +{%- if edit_on_github_url %} + +{%- endif %} + + {{ super() }} +{% endblock %} diff --git a/doc/_templates/smarttoc.html b/doc/_templates/smarttoc.html new file mode 100644 index 00000000..7a3fd3f2 --- /dev/null +++ b/doc/_templates/smarttoc.html @@ -0,0 +1,16 @@ +{# + Sphinx sidebar template: smart table of contents. + + Shows a sidebar ToC that gives you a more global view of the + documentation, and not the confusing cur/prev/next which is the + default sidebar. + + The ToC will open and collapse automatically to show the part of the + hierarchy you are in. Top-level items will always be visible. + +#} +

{{ _('Table Of Contents') }}

+{{ toctree(maxdepth=-1, includehidden=True) }} + + + -- cgit v1.2.3