mirror of
https://git.bolliret.ch/pcs/pcs-website
synced 2026-01-18 18:31:36 +01:00
30 lines
867 B
HTML
30 lines
867 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
|
|
<title>{% block title %}Welcome{% endblock %} — PCS</title>
|
|
<body>
|
|
<header>
|
|
<h1>PCS</h1>
|
|
<nav>
|
|
<ul class="nav navbar-nav">
|
|
<li{% if this._path == '/' %} class="active"{% endif
|
|
%}><a href="{{ '/'|url }}">Welcome</a></li>
|
|
{% for href, title in [
|
|
['/termine', 'Termine'],
|
|
['/about', 'Über uns'],
|
|
['/vorstand', 'Vorstand'],
|
|
['/kontakt', 'Kontakt']
|
|
] %}
|
|
<li{% if this.is_child_of(href) %} class="active"{% endif
|
|
%}><a href="{{ href|url }}">{{ title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<div class="page">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<footer>
|
|
© Copyright 2024 by PC Stammertal.
|
|
</footer>
|
|
</body>
|