-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump napari sphinx theme version (#423)
# References and relevant issues Depends on napari/napari-sphinx-theme#161 (and a new release of the theme) # Description Restores the sidebar after the PyData Sphinx Theme is updated to version 0.15.3 --------- Co-authored-by: Juan Nunez-Iglesias <[email protected]> Co-authored-by: Peter Sobolewski <[email protected]>
- Loading branch information
1 parent
21b8aa6
commit 7125f16
Showing
4 changed files
with
28 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
<nav class="bd-docs-nav bd-links" | ||
aria-label="{{ _('Section Navigation') }}"> | ||
<div class="bd-toc-item navbar-nav">{{ sidebar_nav_html }}</div> | ||
</nav> | ||
{# Displays the TOC-subtree for pages nested under the currently active top-level TOCtree element. #} | ||
<nav class="bd-docs-nav bd-links" aria-label="{{ _('Section Navigation') }}"> | ||
<div class="bd-toc-item navbar-nav"> | ||
{{- generate_toctree_html( | ||
"sidebar", | ||
show_nav_level=theme_show_nav_level | int, | ||
maxdepth=theme_navigation_depth | int, | ||
collapse=theme_collapse_navigation | tobool, | ||
includehidden=theme_sidebar_includehidden | tobool, | ||
titles_only=True | ||
) | ||
-}} | ||
</div> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters