Implemented header and footer menu

This commit is contained in:
2025-01-08 18:06:08 +01:00
parent 59eebbeb92
commit cc04bbf0f5
6 changed files with 87 additions and 95 deletions

View File

@@ -20,18 +20,23 @@
<img src="{{company.logo}}" alt="logo"/>
<h1>{{company.titel}}</h1>
<h2>{{company.subtitel}}</h2>
{% include "navigation.html.j2" %}
</header>
{% set menu = "top" %}
{% include "navigation.html.j2"%}
{% block content %}{% endblock %}
<footer class="footer" itemscope itemtype="http://schema.org/LocalBusiness" class="small">
<p itemprop="name">{{ company.titel }} <br />
{{ company.subtitel }}</p>
<span><i class="fa-solid fa-location-dot"></i> {{ company.address.values() | join(", ") }}</span>
<p><a href="/imprint"><i class="fa-solid fa-scale-balanced"></i> Imprint</a></p>
{% set menu = "bottom" %}
{% include "navigation.html.j2" %}
<footer class="footer">
<div itemscope itemtype="http://schema.org/LocalBusiness" class="small">
<p itemprop="name">{{ company.titel }} <br />
{{ company.subtitel }}</p>
<span><i class="fa-solid fa-location-dot"></i> {{ company.address.values() | join(", ") }}</span>
<p><a href="/imprint"><i class="fa-solid fa-scale-balanced"></i> Imprint</a></p>
</div>
</footer>
</div>
<!-- Include modal -->
{% include "modal.html.j2" %}
<script src="{{ url_for('static', filename='js/dynamic-modal.js') }}"></script>
</body>
</html>