pcs-website-test/lektor/lektordata/project/templates/layout.html
2025-01-13 08:43:11 +01:00

64 lines
2.3 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'|url }}" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="{{ '/favicon.svg'|url }}" />
<link rel="shortcut icon" href="{{ '/favicon.ico'|url }}" />
<link rel="apple-touch-icon" sizes="180x180" href="{{ '/apple-touch-icon.png'|url }}" />
<meta name="apple-mobile-web-app-title" content="PCS" />
<link rel="manifest" href="{{ '/site.webmanifest'|url }}" />
<title>{% block title %}Welcome{% endblock %} — PCS</title>
<body>
<header>
<div class="inner_header">
<nav>
<div class="left_header">
<ul class="nav">
<li class="{% if this._path == '/' %}active{% endif
%}"><a href="{{ '/'|url }}"><img class="header-logo" src="/images/logo.svg" alt="PCS Logo">Pistolenclub Stammertal</a></li>
</ul>
</div>
<div class="right_header">
<label for='menu' tabindex="0">
&#x2630;
</label>
<input id='menu' type='checkbox' />
<ul class="nav navbar-nav">
{% for href, title in [
['/termine', 'Termine'],
['/vorstand', 'Vorstand'],
['/about', 'Über uns'],
['/kontakt', 'Kontakt aufnehmen']
] %}
<li class="{% if this.is_child_of(href) %}active{% endif
%}
{% if title == 'Kontakt aufnehmen' %} button{% endif
%}"><a href="{{ href|url }}">{{ title }}</a></li>
{% endfor %}
</ul>
</div>
</nav>
</div>
</header>
<div class="page{% if this._path == '/' %} home{% endif
%}{%if this._path == '/termine' %} termine{% endif
%}{%if this._path == '/vorstand' %} vorstand{% endif
%}">
{% block body %}{% endblock %}
</div>
<footer>
<div class="inner_footer">
<div class="left_footer">
&nbsp;<br/>
Pistolenclub Stammertal<br/>
8476 Unterstammheim<br/>
</div>
<div class="middle_footer">
<a href="/impressum/">Impressum</a>
</div>
<div class="right_footer">
&copy; Copyright 2025 by PC Stammertal.
</div>
</div>
</footer>
</body>