From a3d5f0a4c0bb35580d0d60ea313ba31951e846b7 Mon Sep 17 00:00:00 2001 From: Deepak Khatri <lorforlinux@beagleboard.org> Date: Tue, 27 Jun 2023 17:06:59 +0530 Subject: [PATCH] WIP: fix html logo issue --- conf.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/conf.py b/conf.py index 7527da1b..1edea801 100644 --- a/conf.py +++ b/conf.py @@ -65,12 +65,8 @@ html_theme_options = { 'prev_next_buttons_location': 'bottom', } html_title = "BeagleBoard Documentation" -html_logo = str(BBDOCS_BASE / "_static" / "images" / "logo.svg") -print(html_logo) -html_favicon = str(BBDOCS_BASE / "_static" / "images" / "favicon.ico") -print(html_favicon) -print(os.listdir(str(BBDOCS_BASE / "_static"))) -print(os.listdir(str(BBDOCS_BASE / "_static" / "images"))) +html_logo = "_static/images/logo.svg" +html_favicon = "_static/images/favicon.ico" html_static_path = [str(BBDOCS_BASE / "_static")] html_last_updated_fmt = "%b %d, %Y" html_domain_indices = False -- GitLab