We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the html theme has its own sidebars, pages that use blog sidebars and comments together do no display correctly.
sphinx-quickstart
docs/ ├── build/ ├── source/ │ ├── conf.py │ ├── index.rst │ ├── test.rst │ └── blog.rst ├── make.bat └── Makefile
conf.py
project = 'Test' extensions = ['ablog','sphinx.ext.intersphinx'] html_theme = 'pydata_sphinx_theme' html_sidebars = { "blog": [ 'ablog/postcard.html', 'ablog/recentposts.html', 'ablog/tagcloud.html', 'ablog/categories.html', 'ablog/archives.html', ] } blog_baseurl: str = "https://my-documentation-website.com" disqus_shortname: str = "my_disqus_id"
index.rst
Homepage ======== .. toctree:: test
test.rst
Test Page ========= .. toctree:: blog
blog.rst
:blogpost: true :date: May 17, 2023 Test post ========= This is a blog post.
test.html
Displays correctly:
blog.html
Displays incorrectly:
ablog 0.11.4.post1 pydata-sphinx-theme 0.13.3 sphinx 6.2.1 python 3.11.3 MacOS 12.6
conda
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When the html theme has its own sidebars, pages that use blog sidebars and comments together do no display correctly.
To Reproduce
Docs directory structure (generated by
sphinx-quickstart
):conf.py
:index.rst
test.rst
blog.rst
Screenshots
test.html
Displays correctly:
blog.html
Displays incorrectly:
System Details
ablog 0.11.4.post1
pydata-sphinx-theme 0.13.3
sphinx 6.2.1
python 3.11.3
MacOS 12.6
Installation method
conda
The text was updated successfully, but these errors were encountered: