docs: add sphinx docs and gitlab pages

This commit is contained in:
Prawn 2022-06-24 01:43:34 +00:00
parent e28239454a
commit 35a79363a4
15 changed files with 564 additions and 0 deletions

21
docs/source/conf.py Normal file
View file

@ -0,0 +1,21 @@
import os
import sys
sys.path.insert(0, os.path.abspath('../..'))
extensions = [
'sphinx_click',
'sphinx.ext.autosummary', # Create neat summary tables
]
templates_path = ['templates']
project = 'Kupfer👢strap'
html_title = 'Kupferbootstrap'
html_theme = 'furo'
html_static_path = ['static']
html_css_files = ['kupfer_docs.css']
html_favicon = 'static/kupfer-white-filled.svg'
html_theme_options = {
"globaltoc_maxdepth": 5,
"globaltoc_collapse": True,
"light_logo": "kupfer-black-transparent.svg",
"dark_logo": "kupfer-white-transparent.svg",
}