File: conf.py

package info (click to toggle)
sphinx-basic-ng 1.0.0~beta1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 504 kB
  • sloc: python: 179; makefile: 5
file content (30 lines) | stat: -rw-r--r-- 749 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Configuration file for the Sphinx documentation builder.
#
# Full list of options can be found in the Sphinx documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

#
# -- Project information -----------------------------------------------------
#

project = "sphinx-basic-ng sample"
copyright = "2021, Pradyun Gedam"
author = "Pradyun Gedam"

#
# -- General configuration ---------------------------------------------------
#

extensions = ["myst_parser"]

#
# -- Options for HTML output -------------------------------------------------
#

html_theme = "basic-ng"
html_style = "sample.css"
templates_path = ["_theme"]
html_static_path = ["_static"]
html_context = {
    "theme_announcement": "Site wide announcement!",
}