From 7442495d9b47cea15a3b6b8ce0a9233aff3387a4 Mon Sep 17 00:00:00 2001 From: Ariel Rokem Date: Mon, 10 Aug 2026 16:52:42 -0400 Subject: [PATCH 1/2] Revamps side bar to be uniform with the main website and other implementations. --- docs/_templates/implementation-links.html | 11 +++++++++++ docs/source/conf.py | 5 ++--- 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 docs/_templates/implementation-links.html diff --git a/docs/_templates/implementation-links.html b/docs/_templates/implementation-links.html new file mode 100644 index 0000000..987d3ce --- /dev/null +++ b/docs/_templates/implementation-links.html @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index e35ab65..eec60e4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -106,9 +106,8 @@ html_static_path = ['../_static'] html_sidebars = { - "scripts": [], - "trx_specifications": [], -} + "**": ["sidebar-nav-bs.html", "implementation-links.html"], + } html_theme_options = { "icon_links": [ From df0cc037e260207137ec61cd1b39104ef2292426 Mon Sep 17 00:00:00 2001 From: Ariel Rokem Date: Wed, 26 Aug 2026 13:27:39 -0400 Subject: [PATCH 2/2] Move templates folder to where sphinx expects to find it. --- docs/{ => source}/_templates/implementation-links.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/{ => source}/_templates/implementation-links.html (100%) diff --git a/docs/_templates/implementation-links.html b/docs/source/_templates/implementation-links.html similarity index 100% rename from docs/_templates/implementation-links.html rename to docs/source/_templates/implementation-links.html