diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2025-07-27 14:37:43 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2025-09-07 12:37:09 -0700 |
commit | e7fd10c0ff40b3bb6752c861b60afcf1cdf0a035 (patch) | |
tree | 5c95f449c388926815089f06754ac53d436d3b13 /Documentation/website/conf.py | |
parent | c3a19c1e54977a53027d6232050e1e3e39a98a1b (diff) | |
download | openbios-master.zip openbios-master.tar.gz openbios-master.tar.bz2 |
This can be edited using the usual credentials, reviewed using the usual
workflow and updated on the server automatically.
Diffstat (limited to 'Documentation/website/conf.py')
-rw-r--r-- | Documentation/website/conf.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Documentation/website/conf.py b/Documentation/website/conf.py new file mode 100644 index 0000000..27b08dd --- /dev/null +++ b/Documentation/website/conf.py @@ -0,0 +1,34 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +project = 'OpenBIOS' +copyright = '2025, The OpenBIOS authors' +author = 'The OpenBIOS authors' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = ['myst_parser', 'sphinx_external_toc', 'sphinx_reredirects'] + +templates_path = ['_templates'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'README.md'] + +redirects = { + "License": "Licensing.html", + "OpenBoot": "OpenBOOT.html", + "Project_Statement": "Code_of_Conduct.html", + "Releases": "OpenBIOS.html", + "Building_OFW_to_Run_Under_BIOS": "Building_OFW_to_Load_from_BIOS.html", +} + + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'alabaster' +html_static_path = ['_static'] |