From 7fbae24ffb6cfbec4c2e5e45c29070ea9b37d67f Mon Sep 17 00:00:00 2001 From: taleintervenor Date: Tue, 13 Jul 2021 10:44:18 +0800 Subject: [PATCH] conf: temporary fix on logo bug caused by sphinx upgrade refer to https://github.com/sphinx-doc/sphinx/pull/9381 Signed-off-by: taleintervenor --- docs/conf.py | 4 ++-- docs/{img => }/favicon.png | Bin docs/{img => }/logos.png | Bin 3 files changed, 2 insertions(+), 2 deletions(-) rename docs/{img => }/favicon.png (100%) rename docs/{img => }/logos.png (100%) diff --git a/docs/conf.py b/docs/conf.py index a0f6ff98..107eb70a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -76,11 +76,11 @@ # a list of builtin themes. # html_theme = 'sphinx_material' -html_favicon = 'img/favicon.png' +html_favicon = 'favicon.png' # The name of an image file (relative to this directory) to place at the top # of the sidebar. -html_logo = 'img/logos.png' +html_logo = 'logos.png' # Material theme options (see theme.conf for more information) html_theme_options = { diff --git a/docs/img/favicon.png b/docs/favicon.png similarity index 100% rename from docs/img/favicon.png rename to docs/favicon.png diff --git a/docs/img/logos.png b/docs/logos.png similarity index 100% rename from docs/img/logos.png rename to docs/logos.png