mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
10 lines
318 B
Python
10 lines
318 B
Python
html_theme = 'classic'
|
|
templates_path = ['_templates']
|
|
|
|
|
|
def setup(app):
|
|
app.add_css_file('persistent.css')
|
|
app.add_css_file('default.css', title="Default")
|
|
app.add_css_file('alternate1.css', title="Alternate", rel="alternate stylesheet")
|
|
app.add_css_file('alternate2.css', rel="alternate stylesheet")
|