Files
Hugo_MAP-NSU-Komplex/themes/op-dz/layouts/partials/footer.html
T
2026-08-18 15:32:41 +02:00

81 lines
3.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- FOOTER -->
<footer class="op-footer op-section-blau uk-section">
<div class="uk-container">
<!-- Spalten aus dem Hauptmenü (Einträge mit Unterpunkten) -->
<div class="uk-child-width-1-2@s uk-child-width-1-4@m uk-grid-large" uk-grid>
{{ range site.Menus.main }}
{{ if .HasChildren }}
<div>
<nav aria-label="Footer: {{ .Name }}">
<p class="op-footer-head">{{ .Name }}</p>
<ul class="uk-nav uk-nav-default">
{{ range .Children }}
<li><a href="{{ partial "menu-url.html" .URL }}">{{ .Name }}</a></li>
{{ end }}
</ul>
</nav>
</div>
{{ end }}
{{ end }}
</div>
<hr class="uk-margin-large">
<div class="uk-grid-large uk-flex-middle" uk-grid>
<div class="uk-width-auto">
<a class="op-logo" href="{{ site.Home.RelPermalink }}" aria-label="{{ site.Title }} Startseite">
<img class="op-logo__img" src="{{ "images/logos/Logo_OP_DZ_negativ.png" | relURL }}"
alt="{{ site.Title }}" height="40">
</a>
</div>
<div class="uk-width-expand@s">
<address style="font-style:normal;">
{{ with site.Params.address }}
{{ with .street }}{{ . }}<br>{{ end }}
{{ with .city }}{{ . }}<br>{{ end }}
{{ end }}
{{ with site.Params.email }}<a href="mailto:{{ . }}">{{ . }}</a>{{ end }}
{{ with site.Params.phone }} · {{ . }}{{ end }}
</address>
</div>
{{ with site.Params.instagramURL }}
<div class="uk-width-auto">
<a href="{{ . }}" target="_blank" rel="noopener" aria-label="Instagram: Offener Prozess" uk-icon="icon: instagram; ratio: 1.3"></a>
</div>
{{ end }}
{{ with site.Menus.meta }}
<div class="uk-width-auto">
<nav aria-label="Weitere Links">
<ul class="uk-subnav uk-margin-remove">
{{ range . }}<li><a href="{{ partial "menu-url.html" .URL }}"{{ if hasPrefix .URL "http" }} target="_blank" rel="noopener"{{ end }}>{{ .Name }}</a></li>{{ end }}
</ul>
</nav>
</div>
{{ end }}
</div>
{{ with site.Params.foerderLogo }}
<div class="op-foerder op-foerder--logo uk-margin-large-top">
<img src="{{ . | relURL }}" alt="Gefördert durch den Freistaat Sachsen Sächsisches Staatsministerium für Soziales, Gesundheit und gesellschaftlichen Zusammenhalt; Weltoffenes Sachsen" loading="lazy">
</div>
{{ else }}
<div class="op-foerder uk-margin-large-top">
{{ site.Params.foerderHinweis | default "Platzhalterfläche für Förderlogos" }}
</div>
{{ end }}
<hr class="uk-margin-large">
<div class="uk-flex uk-flex-between uk-flex-wrap uk-text-small">
<span>© {{ now.Year }} {{ site.Title }}</span>
{{ with site.Menus.legal }}
<nav aria-label="Rechtliches">
{{ range $i, $e := . }}{{ if $i }} · {{ end }}<a href="{{ partial "menu-url.html" $e.URL }}">{{ $e.Name }}</a>{{ end }}
</nav>
{{ end }}
</div>
</div>
</footer>