summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2021-08-28 00:55:30 +0200
committerGitHub <noreply@github.com>2021-08-27 23:55:30 +0100
commit5657a1429f3b7052798385ae6cbb3fa02e3892ca (patch)
tree60d78e6efd20b202fbb8be01bab5bd622b9c9a64
parent0d6c2a790bf10c5dd28d1ea77c334a87c0d28296 (diff)
downloadtox-git-5657a1429f3b7052798385ae6cbb3fa02e3892ca.tar.gz
🎨📝 Actually use the favicon in Sphinx (#2177)
* 🎨📝 Actually use the favicon in Sphinx * Add a change note for PR #2177
-rw-r--r--docs/changelog/2177.doc.rst3
-rw-r--r--docs/conf.py1
2 files changed, 4 insertions, 0 deletions
diff --git a/docs/changelog/2177.doc.rst b/docs/changelog/2177.doc.rst
new file mode 100644
index 00000000..8682ef90
--- /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 ec08514a..394cee4c 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -81,6 +81,7 @@ html_theme_options = {
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)