Skip to content

Commit 0c2a7fd

Browse files
author
Kevin Paul
committed
New navbar and generatic footer menu (for now)
1 parent 55c54c6 commit 0c2a7fd

File tree

1 file changed

+36
-20
lines changed

1 file changed

+36
-20
lines changed

portal/conf.py

Lines changed: 36 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -90,58 +90,74 @@
9090
'google_analytics_id': 'G-T9KGMX7VHZ',
9191
'logo_only': True,
9292
'logo_link': 'https://projectpythia.org',
93-
'navbar_align': 'left',
9493
'navbar_links': [
95-
{'name': 'Portal', 'url': 'https://projectpythia.org'},
94+
{'name': 'Home', 'url': '/'},
9695
{'name': 'Foundations', 'url': 'https://foundations.projectpythia.org'},
9796
{'name': 'Gallery', 'url': 'https://projectpythia.org/gallery.html'},
98-
{'name': 'Join us!', 'url': 'https://projectpythia.org/index.html#join-us'},
97+
{'name': 'Community', 'url': 'https://projectpythia.org/index.html#join-us'},
9998
],
99+
'navbar_align': 'left',
100100
'page_layouts': {'index': 'page-banner.html', 'gallery': 'page-standalone.html'},
101101
'footer_menu': [
102102
{
103-
'title': 'More about...',
103+
'title': 'Column A',
104104
'class': 'col-8 col-sm-4 col-md-3 col-lg-2',
105105
'items': [
106106
{
107-
'name': 'Project Pythia',
108-
'url': 'https://projectpythia.org/about',
107+
'name': 'Link 1',
108+
'url': 'https://google.com',
109+
},
110+
{
111+
'name': 'Link 2',
112+
'url': 'https://google.com',
109113
},
110114
{
111-
'name': 'Pangeo',
112-
'url': 'https://pangeo.io',
115+
'name': 'Link 3',
116+
'url': 'https://google.com',
113117
},
114118
{
115-
'name': 'Project Jupyter',
116-
'url': 'https://jupyter.org',
119+
'name': 'Link 4',
120+
'url': 'https://google.com',
117121
},
118122
],
119123
},
120124
{
121-
'title': 'Join the community',
125+
'title': 'Column B',
122126
'class': 'col-8 col-sm-4 col-md-3 col-lg-2',
123127
'items': [
124128
{
125-
'name': "Contributor's Guide",
126-
'url': 'https://foundations.projectpythia.org/appendix/how-to-contribute.html', # noqa
129+
'name': 'Link 1',
130+
'url': 'https://google.com',
131+
},
132+
{
133+
'name': 'Link 2',
134+
'url': 'https://google.com',
135+
},
136+
{
137+
'name': 'Link 3',
138+
'url': 'https://google.com',
127139
},
128140
{
129-
'name': 'Our GitHub Organization',
130-
'url': 'https://github.com/ProjectPythia', # noqa
141+
'name': 'Link 4',
142+
'url': 'https://google.com',
131143
},
132144
],
133145
},
134146
{
135-
'title': 'We want your feedback!',
147+
'title': 'Column C',
136148
'class': 'col-8 col-sm-4 col-md-3 col-lg-2',
137149
'items': [
150+
{'name': 'Just some text!'},
138151
{
139-
'name': 'Fill out this Google Form',
140-
'url': 'https://docs.google.com/forms/d/e/1FAIpQLSeVa1TC9xM-dk7qIE2e8bsgSrIP82yYDNw3wew3J46eREJa4w/viewform?usp=sf_link', # noqa
152+
'name': (
153+
'Another paragraph of text. This has '
154+
'a lot more information in it than '
155+
'the previous paragraph.'
156+
)
141157
},
142158
{
143-
'name': 'Submit an issue on GitHub',
144-
'url': 'https://github.com/ProjectPythia/sphinx-pythia-theme/issues/new?title=Issue%20with%20Sphinx%20Pythia%20Theme&body=Your%20issue%20content%20here.', # noqa
159+
'name': 'And finally a link',
160+
'url': 'https://google.com',
145161
},
146162
],
147163
},

0 commit comments

Comments
 (0)