pcs-website-test/lektor/lektordata/project/templates/layout.html

36 lines
1.2 KiB
HTML

<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="PCS" />
<link rel="manifest" href="/site.webmanifest" />
<title>{% block title %}Welcome{% endblock %} — PCS</title>
<body>
<header>
<h1>Pistolenclub Stammertal</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>
&copy; Copyright 2024 by PC Stammertal.
</footer>
</body>