From b31deccdfd00f70e3d3596846b295a045741d419 Mon Sep 17 00:00:00 2001 From: Deepak Khatri <lorforlinux@beagleboard.org> Date: Tue, 27 Jun 2023 17:22:46 +0530 Subject: [PATCH] WIP: reverse script changes --- conf.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/conf.py b/conf.py index 1edea801..baec57ca 100644 --- a/conf.py +++ b/conf.py @@ -14,7 +14,6 @@ from sphinx.ext.imgconverter import ImagemagickConverter ImagemagickConverter.conversion_rules.append(('image/webp', 'image/png')) BBDOCS_BASE = Path(__file__).resolve().parents[0] -print("BBDOCS_BASE: ", BBDOCS_BASE) # -- Project information ----------------------------------------------------- @@ -65,8 +64,8 @@ html_theme_options = { 'prev_next_buttons_location': 'bottom', } html_title = "BeagleBoard Documentation" -html_logo = "_static/images/logo.svg" -html_favicon = "_static/images/favicon.ico" +html_logo = str(BBDOCS_BASE / "_static" / "images" / "logo.svg") +html_favicon = str(BBDOCS_BASE / "_static" / "images" / "favicon.ico") html_static_path = [str(BBDOCS_BASE / "_static")] html_last_updated_fmt = "%b %d, %Y" html_domain_indices = False -- GitLab