-
Notifications
You must be signed in to change notification settings - Fork 339
logo is not display in the "latest" version of the doc #1130
New issue
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
Comments
We're seeing this in numpydoc's CI: https://github.com/numpy/numpydoc/actions/runs/3859437463/jobs/6689897153 |
FWIW I see this with |
yes that's exactly what it is, they deprecated a jinja internal variable ( |
I added this to the milestone for the next release because I suspect we will need to do some special casing for sphinx versions to prevent this from breaking for others. |
I'll check favicon as well, I suspect it will need some special casing as well |
from sphinx documentation:
So it should work with these 2 configurations whatever the sphinx version: html_logo = "_static/logo.svg"
html_favicon = "_static/logo.svg" or html_logo = "https://raw.githubusercontent.com/pydata/pydata-sphinx-theme/main/docs/_static/logo.svg"
html_favicon = "https://raw.githubusercontent.com/pydata/pydata-sphinx-theme/main/docs/_static/logo.svg" |
Ah ok cool - as long as it works then that sounds great 🙂 |
1 similar comment
Ah ok cool - as long as it works then that sounds great 🙂 |
I think we were too fast reviewing #1097.
logo_url seems to be relativ to the _static folder so the name set-up in the docs is leading to
_static/_static/logo.svg
that of course does not exist.demo: https://pydata-sphinx-theme.readthedocs.io/en/latest/
The text was updated successfully, but these errors were encountered: