|
|
@ -6,10 +6,10 @@ |
|
|
<meta charset="UTF-8"> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
|
<link rel="stylesheet" href="{% static 'css/w3.css' %}"> |
|
|
<link rel="stylesheet" href="{% static 'css/w3.css' %}"> |
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> |
|
|
|
|
|
<link rel="stylesheet" href="{% static 'css/sinnes-tau.css' %}"> |
|
|
<link rel="stylesheet" href="{% static 'css/sinnes-tau.css' %}"> |
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato"> |
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato"> |
|
|
<link rel="stylesheet" href="{% static 'css/all.css' %}"> |
|
|
<link rel="stylesheet" href="{% static 'css/all.css' %}"> |
|
|
|
|
|
<link rel="shortcut icon" href="{% static 'img/favicon.ico' %}"> |
|
|
<style> |
|
|
<style> |
|
|
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;} |
|
|
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;} |
|
|
body, html { |
|
|
body, html { |
|
|
@ -20,7 +20,7 @@ body, html { |
|
|
{% block style %}<!-- Style here -->{% endblock %} |
|
|
{% block style %}<!-- Style here -->{% endblock %} |
|
|
|
|
|
|
|
|
</style> |
|
|
</style> |
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" /> |
|
|
<body> |
|
|
<body> |
|
|
<!-- Navbar (sit on top) --> |
|
|
<!-- Navbar (sit on top) --> |
|
|
<div class="w3-top"> |
|
|
<div class="w3-top"> |
|
|
@ -113,6 +113,25 @@ function openCity(evt, cityName) { |
|
|
evt.currentTarget.classList.add("w3-light-grey"); |
|
|
evt.currentTarget.classList.add("w3-light-grey"); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js" data-cfasync="false"></script> |
|
|
|
|
|
<script> |
|
|
|
|
|
window.cookieconsent.initialise({ |
|
|
|
|
|
"palette": { |
|
|
|
|
|
"popup": { |
|
|
|
|
|
"background": "#9a8b69" |
|
|
|
|
|
}, |
|
|
|
|
|
"button": { |
|
|
|
|
|
"background": "#afed71" |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
"content": { |
|
|
|
|
|
"message": "Wir benutzen ausschließlich notwendige Cookies für diese Website", |
|
|
|
|
|
"dismiss": "Einverstanden", |
|
|
|
|
|
"link": "Mehr Info", |
|
|
|
|
|
"href": "/impressum" |
|
|
|
|
|
} |
|
|
|
|
|
}); |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
</body> |
|
|
</body> |
|
|
|