mirror of
https://github.com/len0rd/personal-website.git
synced 2025-03-01 03:51:57 -05:00
56 lines
1.2 KiB
Python
56 lines
1.2 KiB
Python
# Sphinx docs configuration for building project documentation
|
|
from datetime import datetime
|
|
|
|
project = "lenordsNet"
|
|
author = "lenord"
|
|
copyright = f"{datetime.now().year}, lenordsNet"
|
|
|
|
extensions = [
|
|
"sphinxcontrib.youtube",
|
|
"ablog",
|
|
"sphinx.ext.intersphinx",
|
|
"sphinx_design",
|
|
"sphinxcontrib.drawio",
|
|
]
|
|
|
|
html_static_path = ["_static"]
|
|
templates_path = ["_templates"]
|
|
|
|
blog_baseurl = "https://lenord.me/"
|
|
# A path relative to the configuration directory for posts archive pages.
|
|
blog_path = "posts"
|
|
# The "title" for the posts, used in active pages. Default is ``'Blog'``.
|
|
blog_title = "lenordsNet"
|
|
|
|
fontawesome_included = True
|
|
|
|
html_baseurl = blog_baseurl
|
|
html_title = blog_title
|
|
|
|
html_theme = "pydata_sphinx_theme"
|
|
html_theme_options = {
|
|
"search_bar_text": "search ...",
|
|
"show_prev_next": False,
|
|
"navbar_center": [],
|
|
}
|
|
html_favicon = "assets/img/favicon.ico"
|
|
|
|
html_sidebars = {
|
|
"*": [
|
|
"ablog/recentposts.html",
|
|
"ablog/archives.html",
|
|
],
|
|
"posts/**": [
|
|
"ablog/postcard.html",
|
|
"ablog/recentposts.html",
|
|
"ablog/archives.html",
|
|
],
|
|
}
|
|
|
|
html_context = {"html_title": html_title}
|
|
|
|
pygments_style = "sas"
|
|
|
|
drawio_headless = True
|
|
drawio_no_sandbox = True
|