ese-website/_includes/footer.njk

23 lines
646 B
Plaintext
Raw Normal View History

2024-09-13 17:45:32 +02:00
<footer>
<div>
2024-09-14 11:32:32 +02:00
{% set otherLang = page.url | locale_links | first %}
<a href="{{otherLang.url}}" lang="{{otherLang.lang}}" hreflang="{{otherLang.lang}}">
{% if otherLang.lang == "de" %}
Deutsche Version 🇩🇪
{% else %}
English Version 🇬🇧/🇺🇸
{% endif %}
</a>
2024-09-13 17:45:32 +02:00
<nav>
2024-09-14 10:59:22 +02:00
{{ collections.footerNav | pageLang | eleventyNavigation | eleventyNavigationToHtml | safe }}
2024-09-13 17:45:32 +02:00
</nav>
</div>
<div>
<p>
Design:
<a href="https://designtoasty.de" target="_blank" rel="noreferrer">Designtoasty</a>
</p>
<p>Made with 🧉 and 🌈 in Dresden</p>
</div>
</footer>