42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
<!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="MiOM 202 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" />
|
|
|
|
{% if extraStylesheets %}
|
|
{% for extraStylesheet in extraStylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="{{ extraStylesheet }}{{ cssCacheBust }}" media="all" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
</head>
|
|
<body class="mi-page">
|
|
<h1 class="mi-page--we-are mi-page--title mi-page--title_side"><span class="mi-logo">MiOM 202</span> is</h1>
|
|
<p class="mi-things-we-are mi-page--title mi-content">
|
|
{% for thingWeAre in thingsWeAre %}
|
|
<span class="mi-things-we-are--thing">
|
|
{{ thingWeAre }}<span class="mi-things-we-are--space">space</span>
|
|
</span>
|
|
{% endfor %}
|
|
</p>
|
|
|
|
<main class="mi-main mi-content">
|
|
{% if article %}
|
|
{{ article | md | safe }}
|
|
{% endif %}
|
|
|
|
{% include "people.njk" %}
|
|
</main>
|
|
{% include "footer.njk" %}
|
|
</body>
|
|
</html>
|