Some good Sphinx customization examples?

Viewed 16420

I've created a Sphinx document using sphinx-quickstart.

  1. Are there any good examples/tutorials about customizing the look? Specifically to modify the header and add a logo.

  2. Are there some projects with downloadable Sphinx docs? I would like to see how they've customized their look.

update: Adding a logo is supported in the default setup, just not particularly well documented. Look in conf.py for the *_logo settings.`

8 Answers

Have a look at some of these themes. As the projects are open source you should be able to examine them closely.

I've always liked the SQLAlchemy docs. They look very different from the standard Sphinx themes and fit very well into their site.

Related