From 1cecfe73481266eb98f4726669eb19b7058dfa8c Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Wed, 30 Jun 2021 15:03:11 +0200 Subject: [PATCH] doc: move favicon to static folder Similar to other assets, e.g. logo, move favicon to the static folder. Signed-off-by: Gerard Marull-Paretas --- .../zp_favicon.png => _static/images/favicon.png} | Bin doc/conf.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename doc/{images/zp_favicon.png => _static/images/favicon.png} (100%) diff --git a/doc/images/zp_favicon.png b/doc/_static/images/favicon.png similarity index 100% rename from doc/images/zp_favicon.png rename to doc/_static/images/favicon.png diff --git a/doc/conf.py b/doc/conf.py index 13218e3345c..8bb6bd416ae 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -124,7 +124,7 @@ html_theme_options = { } html_title = "Zephyr Project Documentation" html_logo = str(ZEPHYR_BASE / "doc" / "_static" / "images" / "logo.svg") -html_favicon = str(ZEPHYR_BASE / "doc" / "images" / "zp_favicon.png") +html_favicon = str(ZEPHYR_BASE / "doc" / "_static" / "images" / "favicon.png") html_static_path = [str(ZEPHYR_BASE / "doc" / "_static")] html_last_updated_fmt = "%b %d, %Y" html_domain_indices = False