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

Use absolute urls for pages

parent 5a466584
No related branches found
No related tags found
No related merge requests found
...@@ -33,20 +33,20 @@ AUTHOR_FEED_RSS = None ...@@ -33,20 +33,20 @@ AUTHOR_FEED_RSS = None
# Navbar # Navbar
MENUITEMS = [ MENUITEMS = [
('Startseite', 'index.html'), ('Startseite', '/index.html'),
('Neuigkeiten', 'archives.html'), ('Neuigkeiten', '/archives.html'),
('Lösungen', [ ('Lösungen', [
('Schulnetzwerk', 'network.html'), ('Schulnetzwerk', '/network.html'),
('Informationsverwaltung', 'sis.html'), ('Informationsverwaltung', '/sis.html'),
('Cloud und Office', 'cloud.html'), ('Cloud und Office', '/cloud.html'),
]), ]),
('Unterstützung', [ ('Unterstützung', [
('Gemeinschaft', 'community.html'), ('Gemeinschaft', '/community.html'),
('Professionell', 'professional.html'), ('Professionell', '/professional.html'),
]), ]),
('Präsentation', [ ('Präsentation', [
('Messestand', 'stand.html'), ('Messestand', '/stand.html'),
('Vorträge', 'talks.html'), ('Vorträge', '/talks.html'),
]), ]),
] ]
...@@ -62,20 +62,20 @@ MINIFOOTER_MENU = (('Teckids e.V.', ''), ...@@ -62,20 +62,20 @@ MINIFOOTER_MENU = (('Teckids e.V.', ''),
I18N_SUBSITES = { I18N_SUBSITES = {
"en": { "en": {
"MENUITEMS": [ "MENUITEMS": [
('Home', 'index.html'), ('Home', '/index.html'),
('News', 'archives.html'), ('News', '/archives.html'),
('Solutions', [ ('Solutions', [
('School network', 'network.html'), ('School network', '/network.html'),
('Information management', 'sis.html'), ('Information management', '/sis.html'),
('Cloud and Office', 'cloud.html'), ('Cloud and Office', '/cloud.html'),
]), ]),
('Support', [ ('Support', [
('Community', 'community.html'), ('Community', '/community.html'),
('Professional', 'professional.html'), ('Professional', '/professional.html'),
]), ]),
('Präsentation', [ ('Präsentation', [
('Conference booth', 'stand.html'), ('Conference booth', '/stand.html'),
('Talks', 'talks.html'), ('Talks', '/talks.html'),
]), ]),
], ],
"FOOTERMENU": (('Teckids e.V.', 'https://www.teckids.org/'), "FOOTERMENU": (('Teckids e.V.', 'https://www.teckids.org/'),
...@@ -83,20 +83,20 @@ I18N_SUBSITES = { ...@@ -83,20 +83,20 @@ I18N_SUBSITES = {
}, },
"fr": { "fr": {
"MENUITEMS": [ "MENUITEMS": [
('Home', 'index.html'), ('Home', '/index.html'),
('Actualités', 'archives.html'), ('Actualités', '/archives.html'),
('Solutions', [ ('Solutions', [
("Réseau d'école", 'network.html'), ("Réseau d'école", '/network.html'),
("Administration d'informations", 'sis.html'), ("Administration d'informations", '/sis.html'),
('Cloud et Bureau', 'cloud.html'), ('Cloud et Bureau', '/cloud.html'),
]), ]),
('Soutien', [ ('Soutien', [
('Communauté', 'community.html'), ('Communauté', '/community.html'),
('Professionnel', 'professional.html'), ('Professionnel', '/professional.html'),
]), ]),
('Présentation', [ ('Présentation', [
('Stand de foire', 'stand.html'), ('Stand de foire', '/stand.html'),
('Conférence', 'talks.html'), ('Conférence', '/talks.html'),
]), ]),
], ],
"FOOTERMENU": (('Teckids e.V.', 'https://www.teckids.org/'), "FOOTERMENU": (('Teckids e.V.', 'https://www.teckids.org/'),
......
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