59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
---
|
|
themeColor: #D02424
|
|
language: de
|
|
|
|
header: null
|
|
article: null
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="{{ language }}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>{{ title | title | safe }}</title>
|
|
|
|
<link rel="shortcut icon" href="/favicon.png" />
|
|
|
|
<meta name="theme-color" content="{{ themeColor }}" id="theme-color" />
|
|
<meta name="description" content="60 Jahre deutsche-türkisches Anwerbeabkommen, eine Seite der Stadt Köln">
|
|
|
|
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/styles.css" media="all" />
|
|
<link rel="stylesheet" type="text/css" href="/navigation.css" media="all" />
|
|
{% if extraStylesheets %}
|
|
{% for extraStylesheet in extraStylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="{{ extraStylesheet }}" media="all" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
</head>
|
|
<body class="page">
|
|
{% include "navigation.njk" %}
|
|
|
|
{% block header %}
|
|
{% include "header.njk" %}
|
|
{% endblock %}
|
|
|
|
{% if not header %}
|
|
<h1 class="page-title">{{ title | safe }}</h1>
|
|
{% endif %}
|
|
|
|
<main class="page-main">
|
|
{% if article %}
|
|
{{ article | md | safe }}
|
|
{% endif %}
|
|
|
|
{% if eventDays %}
|
|
{% for eventDay in eventDays %}
|
|
{% include "event-day.njk" %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</main>
|
|
|
|
{% if downloads %}
|
|
{% include "downloads.njk" %}
|
|
{% endif %}
|
|
|
|
</body>
|
|
</html>
|