From d85b234f1b9fd075b9d5a919fffb355f9d33ad71 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Wed, 15 Mar 2023 23:33:42 -0400 Subject: [PATCH] docs: add favicon (#1044) --- docs/source/conf.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index a6643721..cfec6191 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -67,13 +67,15 @@ source_suffix = ['.rst', '.md'] # -- Options for HTML output ------------------------------------------------- +# images +html_favicon = os.path.join(root_dir, 'src_assets', 'common', 'assets', 'web', 'images', 'favicon.ico') +html_logo = os.path.join(root_dir, 'sunshine.png') + # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". # html_static_path = ['_static'] -html_logo = os.path.join(root_dir, 'sunshine.png') - # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = 'furo'