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

Fix syntax

parent 3b81d6bb
No related branches found
No related tags found
No related merge requests found
......@@ -46,45 +46,46 @@ MENUITEMS = [
]),
]
FOOTERMENU = (('Pelican', 'http://getpelican.com/'),
('Python.org', 'http://python.org/'),
('Jinja2', 'http://jinja.pocoo.org/'),
('Spenden', 'Spenden.html')
('Kontakt', 'Kontakt.html')
('Newsletter', 'Newsletter.html')
('Nutzungsbedingungen und Datenschutz', 'Nutzungsbedingungen_Datenschutz.html')
('AGB für Freizeiten', 'agb_freizeiten.html')
('Lizenzen', 'Lizenzen.html')
('Impressum', 'Impressum.html'))
FOOTERMENU = (("Pelican", "http://getpelican.com/"),
("Python.org", "http://python.org/"),
("Jinja2", "http://jinja.pocoo.org/"),
("Spenden", "Spenden.html"),
("Kontakt", "Kontakt.html"),
("Newsletter", "Newsletter.html"),
("Nutzungsbedingungen und Datenschutz", "Nutzungsbedingungen_Datenschutz.html"),
("AGB für Freizeiten", "agb_freizeiten.html"),
("Lizenzen", "Lizenzen.html"),
("Impressum", "Impressum.html")
)
I18N_SUBSITES = {
"en": {
"MENUITEMS": [
('Home', '/index_en.html'),
('Projects', [
('schul-frei', 'https://schul-frei.org'),
('FrogLabs', 'https://froglabs.org'),
('Services', '/Dienste.html')
("Home", "/index_en.html"),
("Projects", [
("schul-frei", "https://schul-frei.org"),
("FrogLabs", "https://froglabs.org"),
("Services", "/Dienste.html")
]),
('Media and Pedagogy', [
('Educational Concept', '/Paedagogisches_Leitbild.html'),
('Handouts', '/Handreichungen.html'),
("Media and Pedagogy", [
("Educational Concept", "/Paedagogisches_Leitbild.html"),
("Handouts", "/Handreichungen.html"),
]),
('Contribution', [
('Goals', '/Ziele.html')
('Participation of youngsters', '/partizipation.html')
('Membership', 'Mitgliedschaft.html')
])
('Education', [
('Teaching Material', 'https://www.teckids.org/legacy/docs/public/material/docman.htm')
("Contribution", [
("Goals", "/Ziele.html"),
("Participation of youngsters", "/partizipation.html"),
("Membership", "Mitgliedschaft.html"),
]),
("Education", [
("Teaching Material", "https://www.teckids.org/legacy/docs/public/material/docman.htm"),
])
]
}
}
# Social widget
SOCIAL = (('You can add links in your config file', '#'),
('Another social link', '#'),)
SOCIAL = (("You can add links in your config file", "#"),
("Another social link", "#"),)
DEFAULT_PAGINATION = 10
......@@ -96,6 +97,6 @@ PRIMARY_LIGHT = "#FF9955"
SECONDARY_DARK = "#0606FA"
SECONDARY_LIGHT = "#005EBE"
SPONSOR_LOGOS = (('/images/sponsors/logo-bareos.png', 'https://www.bareos.com/'),
('/images/sponsors/logo-speedpartner.png', 'https://www.speedpartner.de/'),
('/images/sponsors/logo_informatik-aktuell.png', 'https://www.informatik-aktuell.de/'))
SPONSOR_LOGOS = (("/images/sponsors/logo-bareos.png", "https://www.bareos.com/"),
("/images/sponsors/logo-speedpartner.png", "https://www.speedpartner.de/"),
("/images/sponsors/logo_informatik-aktuell.png", "https://www.informatik-aktuell.de/"))
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