diff --git a/doc/source/_static/opendev.svg b/doc/source/_static/opendev.svg new file mode 100644 index 0000000..2e2c47f --- /dev/null +++ b/doc/source/_static/opendev.svg @@ -0,0 +1,86 @@ + +image/svg+xml \ No newline at end of file diff --git a/doc/source/conf.py b/doc/source/conf.py index cec996f..e616f06 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -15,7 +15,6 @@ import datetime extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.viewcode', - 'openstackdocstheme' ] todo_include_todos = True @@ -27,11 +26,6 @@ master_doc = 'index' project = u'OpenDev Manual' copyright = ('%d, OpenDev Contributors.' % datetime.date.today().year) -# openstackdocstheme options -repository_name = 'opendev/infra-manual' -bug_project = '721' -bug_tag = '' - # These docs are version independent, no need to set version and release. version = "" # The full version, including alpha/beta/rc tags. @@ -60,9 +54,18 @@ man_pages = [] # -- Options for HTML output --------------------------------------------------- +# This static content is used by the logo below +html_static_path = [ + '_static/', + ] + # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'openstackdocs' +html_theme = 'alabaster' + +html_theme_options = { + 'logo': 'opendev.svg' + } # If false, no module index is generated. html_domain_indices = False diff --git a/requirements.txt b/requirements.txt index cbcd41d..85ea679 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,4 @@ # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. pbr>=2.0.0,!=2.1.0 # Apache-2.0 -openstackdocstheme>=1.32.1 # Apache-2.0 sphinx>=1.6.2 # BSD