executablebooks / sphinx-book-theme

A clean book theme for scientific explanations and documentation with Sphinx
https://sphinx-book-theme.readthedocs.io
BSD 3-Clause "New" or "Revised" License
431 stars 197 forks source link

The title is missing in the v0.4.0rc1 #671

Closed mathbunnyru closed 1 year ago

mathbunnyru commented 1 year ago

Describe the bug

The title Docker Stacks documentation on the upper left side is missing.

Reproduce the bug

pre-release: https://jupyter-docker-stacks--1855.org.readthedocs.build/en/1855/using/recipes.html stable: https://jupyter-docker-stacks.readthedocs.io/en/latest/using/recipes.html

Screenshot 2023-01-05 at 19 12 24 Screenshot 2023-01-05 at 19 12 28

List your environment

No response

melund commented 1 year ago

Is this because of the fall back to PyData-Theme options where you need to explicitly set the following to get the title?

html_theme_options = {
    "logo": {
        "text": "My awesome documentation",
    }
}

Or in this case:

html_theme_options = {
    "logo": {
        "text": html_title ,
    }
}