mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
13 lines
349 B
Python
13 lines
349 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
master_doc = 'index'
|
||
|
html_theme = 'classic'
|
||
|
templates_path = ['_templates']
|
||
|
|
||
|
def setup(app):
|
||
|
app.add_stylesheet('persistent.css')
|
||
|
app.add_stylesheet('default.css', title="Default", alternate=False)
|
||
|
app.add_stylesheet('alternate1.css', title="Alternate")
|
||
|
app.add_stylesheet('alternate2.css', alternate=True)
|
||
|
|