From 835f207c9283f5c85c4684c06d637123c4c84d5b Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Sun, 22 Dec 2019 10:56:26 +0100 Subject: [PATCH] DOC: fix external links + favicon (#30389) --- doc/source/_static/favicon.ico | Bin 3902 -> 0 bytes doc/source/conf.py | 8 ++++++-- 2 files changed, 6 insertions(+), 2 deletions(-) delete mode 100644 doc/source/_static/favicon.ico diff --git a/doc/source/_static/favicon.ico b/doc/source/_static/favicon.ico deleted file mode 100644 index d15c4803b62e6dd2f706a5ebe1861fe438f5d98f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3902 zcmeH}Jxg3c6oyApR`3f%m!K?eBQf?Wh`|)vXg~{V3qO)NRjPnkB%oMmVIkVur4U3B z#Si=g5-b(;7x+=Fpl+U5MjU7FF1y@&!D455cJ4W6_PpoLoteAFRPafq4c}?g*=S7C z7}E(U_yY2)%{CZwVtICy@U```-9QrNV8OCTKMEyeDt@T)LKoaZ)?u0J;uDoHQhDJM zT!X8*q*xqHd7-Qs!{ollxuvE`j|$ZprWLqP?a?9Fg&oT_eK&-W)SAt=ZgoCPgS&rp z{Z+pS)AV}?+AGqW1XuG3dl&*Gd z|AG%N0W+5G^u6#AzFD7Qn(GuO?&kQ7-3Y4Ft@{ys01iF>8Fn4yt3AlS>E*b>ZiRWz zpTYhNd!GLk`&l#aA$d;5s)oN_jtlIvW_fPC)e>yJ!!`7WnjYZZqI0Gn_QBn^QSOzr z)sT+pgC;nDxHN;#k1F*1b11U=^j82{s-Ze2&2#d$#;n-K?he$_D5it9RZdY(XtVE&1|1)i*;M m=p8FsAoPD$6`Va9$mGWmd*#gyCLW9_f*Z!XlFi&C-tr%v>Bf=( diff --git a/doc/source/conf.py b/doc/source/conf.py index 096f1a63eddf8..481c03ab8f388 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -204,7 +204,11 @@ # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -# html_theme_options = {} +html_theme_options = { + "external_links": [], + "github_url": "https://github.com/pandas-dev/pandas", + "twitter_url": "https://twitter.com/pandas_dev", +} # Add any paths that contain custom themes here, relative to this directory. # html_theme_path = ["themes"] @@ -228,7 +232,7 @@ # 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 = os.path.join(html_static_path[0], "favicon.ico") +html_favicon = "../../web/pandas/static/img/favicon.ico" # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format.