From 5657a1429f3b7052798385ae6cbb3fa02e3892ca Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sat, 28 Aug 2021 00:55:30 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=F0=9F=93=9D=20Actually=20use=20the?= =?UTF-8?q?=20favicon=20in=20Sphinx=20(#2177)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🎨📝 Actually use the favicon in Sphinx * Add a change note for PR #2177 --- docs/changelog/2177.doc.rst | 3 +++ docs/conf.py | 1 + 2 files changed, 4 insertions(+) create mode 100644 docs/changelog/2177.doc.rst diff --git a/docs/changelog/2177.doc.rst b/docs/changelog/2177.doc.rst new file mode 100644 index 000000000..8682ef90b --- /dev/null +++ b/docs/changelog/2177.doc.rst @@ -0,0 +1,3 @@ +Enabled the use of the favicon in the Sphinx docs first +introduced in :pull:`764` but not integrated fully +-- :user:`webknjaz` diff --git a/docs/conf.py b/docs/conf.py index ec08514ac..394cee4c8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -81,6 +81,7 @@ def generate_draft_news(): html_sidebars = { "**": ["about.html", "localtoc.html", "relations.html", "searchbox.html", "donate.html"], } +html_favicon = "_static/img/toxfavi.ico" html_show_sourcelink = False html_static_path = ["_static"] htmlhelp_basename = "{}doc".format(project)