2021-09-25 09:56:27 +00:00
|
|
|
---
|
|
|
|
title: 60 Jahre Anwerbeabkommen
|
|
|
|
themeColor: #D02424
|
|
|
|
language: de
|
2021-09-25 11:15:21 +00:00
|
|
|
|
|
|
|
header: null
|
|
|
|
article: null
|
2021-09-25 09:56:27 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ language }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
<meta name="theme-color" content="{{ themeColor }}" id="theme-color" />
|
|
|
|
|
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="Keywords" content="">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/styles.css" media="all" />
|
2021-09-25 11:15:21 +00:00
|
|
|
{% if extraStylesheets %}
|
|
|
|
{% for extraStylesheet in extraStylesheets %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ extraStylesheet }}" media="all" />
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2021-09-25 09:56:27 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2021-09-25 11:15:21 +00:00
|
|
|
{% include "navigation.njk" %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
{% include "header.njk" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2021-09-25 09:56:27 +00:00
|
|
|
<main>
|
2021-09-25 11:15:21 +00:00
|
|
|
{% if article %}
|
|
|
|
{{ article | md | safe }}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if eventDays %}
|
|
|
|
{% for eventDay in eventDays %}
|
|
|
|
{% include "event-day.njk" %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2021-09-25 09:56:27 +00:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|