You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/12/12 14:18:23 UTC

[airflow] branch v1-10-stable updated: Improve compatibility with sphinx_airflow_theme (#13002)

This is an automated email from the ASF dual-hosted git repository.

kamilbregula pushed a commit to branch v1-10-stable
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-stable by this push:
     new 01524bb  Improve compatibility with sphinx_airflow_theme (#13002)
01524bb is described below

commit 01524bbbff8dbf738e19070ed1c4b249fb2503aa
Author: Kamil BreguĊ‚a <mi...@users.noreply.github.com>
AuthorDate: Sat Dec 12 15:16:56 2020 +0100

    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 d70dd69..0c390ca 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -529,3 +529,16 @@ if airflow_theme_is_available:
         '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'},
+        ]
+    }