From ca0012e69a74ad284b57c69e57e12571e24d9c59 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Mon, 23 Aug 2021 18:35:42 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=8E=A8=F0=9F=93=9D=20Actually=20use?= =?UTF-8?q?=20the=20favicon=20in=20Sphinx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 6261d6aa5..c08ed8d09 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) From 95c0ab159b3aa1eaf8531b651e14cd0128da6c2a Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Mon, 23 Aug 2021 18:39:47 +0200 Subject: [PATCH 2/2] Add a change note for PR #2177 --- docs/changelog/2177.doc.rst | 3 +++ 1 file changed, 3 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`