You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
|
|
<title>{% block title %}Welcome{% endblock %} — platform voor extratonaliteit</title>
|
|
<body>
|
|
<header>
|
|
<h1><span class="nothing"></span><a href="{{ '/'|url }}" id="headertitle">Platform voor Extratonaliteit</a></h1>
|
|
<nav>
|
|
<ul class="nav navbar-nav">
|
|
{% for href, title in [
|
|
['/about', 'About'],
|
|
['/agenda', 'Agenda'],
|
|
['/contact', 'Contact'],
|
|
] %}
|
|
<li{% if this.is_child_of(href) %} class="active"{% endif
|
|
%}><a href="{{ href|url }}">{{ title }}</a></li>
|
|
{% endfor %}
|
|
<li><a href="{{ '.'|url(alt='en') }}" {% if this.alt == 'en' %} class="active"{% endif%}>EN</a>/<a href="{{ '.'|url(alt='nl') }}" {% if this.alt == 'nl' %} class="active"{% endif%}>NL</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<div class="page">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<!--
|
|
<footer>
|
|
Platform voor Extratonaliteit, Rotterdam, 2023 ->
|
|
</footer>
|
|
-->
|
|
<script src="{{ '/static/script.js'|url }}"></script>
|
|
</body>
|
|
|