commit 63eb5136fa612b439aae15b881fe9fe602788347 Author: Damian Johnson atagar@torproject.org Date: Tue May 12 16:16:44 2020 -0700
Fix favicon links
The favicon on our website works, but the build warns...
WARNING: logo file 'logo.png' does not exist WARNING: favicon file 'favicon.png' does not exist --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py index 5e20a71b..03268c57 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -127,13 +127,13 @@ html_short_title = 'Stem Docs' # The name of an image file (relative to this directory) to place at the top # of the sidebar.
-html_logo = 'logo.png' +html_logo = '_static/logo.png'
# The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large.
-html_favicon = 'favicon.png' +html_favicon = '_static/favicon.png'
# Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files,