pcs-website-test/lektor/lektordata/project/templates/layout.html
2024-11-24 20:17:55 +01:00

60 lines
2.1 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">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">
{% block body %}{% endblock %}
</div>
<footer>
<div class="left_footer">
Pistolenclub Stammertal<br/>
Irgendwasmussdanochhin<br/>
8476 Unterstammheim<br/>
</div>
<div class="middle_footer">
<a href="impressum/">Impressum</a>
</div>
<div class="right_footer">
&copy; Copyright 2024 by PC Stammertal.
</div>
</footer>
</body>