From 5849fd88bef0dc613ef68dc0065b2b68824a16ce Mon Sep 17 00:00:00 2001
From: Tom Teichler <tom.teichler@teckids.org>
Date: Fri, 29 Jan 2021 22:33:43 +0100
Subject: [PATCH] Fix menu

---
 pelicanconf.py | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/pelicanconf.py b/pelicanconf.py
index 14bce16..3246297 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -26,9 +26,9 @@ AUTHOR_FEED_RSS = None
 
 # Navbar
 MENUITEMS = [
-    ('Home', '/index.html'),
+    ('Home', 'index.html'),
     ('Projekte', [
-        ('FrogLabs', '/bar.html'),
+        ('FrogLabs', 'bar.html'),
         ('HacknFun', 'https://example.com'),
         ('AlekSIS', 'https://aleksis.org'),
         ]),
@@ -41,15 +41,15 @@ FOOTERMENU = (('Pelican', 'http://getpelican.com/'),
 I18N_SUBSITES = {
     "en": {
         "MENUITEMS": [
-            ('Home', '/index_en.html'),
-            ('News', '/archives.html'),
+            ('Home', 'index_en.html'),
+            ('News', 'archives.html'),
             ('Foo', [
-                ('Bar', '/bar.html'),
+                ('Bar', 'bar.html'),
                 ('Beispiel', 'https://example.com'),
                 ]),
             ('Bar', [
-                ('Foobar', '/beispiel'),
-                ('Barfoo', '/beispiel1.html'),
+                ('Foobar', 'beispiel'),
+                ('Barfoo', 'beispiel1.html'),
             ]),
         ]
     }
-- 
GitLab