miom.space/_includes/layouts/default.njk

41 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-10-22 11:13:16 +00:00
<!DOCTYPE html>
2024-02-24 12:45:21 +00:00
<html lang="{{ language.slug }}">
2021-10-22 11:13:16 +00:00
<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">
2021-10-22 11:13:16 +00:00
<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" />
2021-10-23 10:25:03 +00:00
<link rel="stylesheet" type="text/css" href="/raleway.css{{ cssCacheBust }}" media="all" />
2021-10-22 11:13:16 +00:00
2024-02-24 12:45:21 +00:00
<link rel="alternate" hreflang="{{ otherLang.slug }}" href="{% if otherLang.urlPrefix %}/{{otherLang.urlPrefix}}{% endif %}{{ baseURL }}" />
2021-10-22 11:13:16 +00:00
{% if extraStylesheets %}
{% for extraStylesheet in extraStylesheets %}
<link rel="stylesheet" type="text/css" href="{{ extraStylesheet }}{{ cssCacheBust }}" media="all" />
{% endfor %}
{% endif %}
</head>
2021-10-22 16:05:00 +00:00
<body class="mi-page">
2024-02-24 12:45:21 +00:00
{% include "border.njk" %}
2024-02-17 14:07:20 +00:00
{% block navigation %}
{% include "navigation.njk" %}
{% endblock %}
2021-10-22 11:13:16 +00:00
2024-02-16 18:52:30 +00:00
{% block main %}
2024-02-17 14:07:20 +00:00
<main class="mi-main mi-main_content">
<h1>{{ title }}</h1>
{{ text | md | safe }}
2024-02-16 18:52:30 +00:00
</main>
{% endblock %}
2021-10-22 11:13:16 +00:00
</body>
</html>