From 01524bbbff8dbf738e19070ed1c4b249fb2503aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Bregu=C5=82a?= Date: Sat, 12 Dec 2020 15:16:56 +0100 Subject: [PATCH] Improve compatibility with sphinx_airflow_theme (#13002) --- docs/conf.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index d70dd69dcfcd1a..0c390ca5b39119 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -529,3 +529,16 @@ 'display_github': 'master', 'suffix': '.rst', } + + html_theme_options = { + 'hide_website_buttons': False, + 'navbar_links': [ + {'href': '/community/', 'text': 'Community'}, + {'href': '/meetups/', 'text': 'Meetups'}, + {'href': '/docs/', 'text': 'Documentation'}, + {'href': '/use-cases/', 'text': 'Use-cases'}, + {'href': '/announcements/', 'text': 'Announcements'}, + {'href': '/blog/', 'text': 'Blog'}, + {'href': '/ecosystem/', 'text': 'Ecosystem'}, + ] + }