Benjamin Yule Bädorf
478bb1a14d
All checks were successful
continuous-integration/drone/push Build is passing
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="{{ language.slug }}">
|
|
<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="MiOM Kreativraum is a creative space in Cologne, Germany">
|
|
|
|
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/styles.css{{ cssCacheBust }}" media="all" />
|
|
<link rel="stylesheet" type="text/css" href="/raleway.css{{ cssCacheBust }}" media="all" />
|
|
|
|
<link rel="alternate" hreflang="{{ otherLang.slug }}" href="{% if otherLang.urlPrefix %}/{{otherLang.urlPrefix}}{% endif %}{{ baseURL }}" />
|
|
|
|
{% if extraStylesheets %}
|
|
{% for extraStylesheet in extraStylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="{{ extraStylesheet }}{{ cssCacheBust }}" media="all" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
</head>
|
|
<body class="mi-page">
|
|
{% include "border.njk" %}
|
|
|
|
{% block navigation %}
|
|
{% include "navigation.njk" %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<main class="mi-main mi-main_content">
|
|
<h1>{{ title }}</h1>
|
|
|
|
{{ text | md | safe }}
|
|
</main>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|