extratonal.org/templates/layout.html
2023-11-26 23:34:10 +01:00

32 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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">PlatformvoorExtratonaliteit</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>