Skip to content
Snippets Groups Projects
Verified Commit 5849fd88 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix menu

parent 3e740560
No related branches found
No related tags found
No related merge requests found
Pipeline #5598 passed
...@@ -26,9 +26,9 @@ AUTHOR_FEED_RSS = None ...@@ -26,9 +26,9 @@ AUTHOR_FEED_RSS = None
# Navbar # Navbar
MENUITEMS = [ MENUITEMS = [
('Home', '/index.html'), ('Home', 'index.html'),
('Projekte', [ ('Projekte', [
('FrogLabs', '/bar.html'), ('FrogLabs', 'bar.html'),
('HacknFun', 'https://example.com'), ('HacknFun', 'https://example.com'),
('AlekSIS', 'https://aleksis.org'), ('AlekSIS', 'https://aleksis.org'),
]), ]),
...@@ -41,15 +41,15 @@ FOOTERMENU = (('Pelican', 'http://getpelican.com/'), ...@@ -41,15 +41,15 @@ FOOTERMENU = (('Pelican', 'http://getpelican.com/'),
I18N_SUBSITES = { I18N_SUBSITES = {
"en": { "en": {
"MENUITEMS": [ "MENUITEMS": [
('Home', '/index_en.html'), ('Home', 'index_en.html'),
('News', '/archives.html'), ('News', 'archives.html'),
('Foo', [ ('Foo', [
('Bar', '/bar.html'), ('Bar', 'bar.html'),
('Beispiel', 'https://example.com'), ('Beispiel', 'https://example.com'),
]), ]),
('Bar', [ ('Bar', [
('Foobar', '/beispiel'), ('Foobar', 'beispiel'),
('Barfoo', '/beispiel1.html'), ('Barfoo', 'beispiel1.html'),
]), ]),
] ]
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment