2019-03-12 13:49:49 +01:00
|
|
|
<footer class="site-footer clearfix">
|
2021-06-15 03:31:51 +02:00
|
|
|
<div class="wrapper">
|
|
|
|
{% if site.data.footer-links %}
|
2023-07-24 10:00:07 +02:00
|
|
|
<div id="footerlinks">
|
|
|
|
{% assign footerlinks = site.data.footer-links %} | {% for
|
|
|
|
footerlink in footerlinks %} {% assign fkey = footerlink | first %}
|
|
|
|
<a href="{{footerlinks[fkey].href}}" title="{{footerlinks[fkey].title}}"
|
|
|
|
>{{footerlinks[fkey].title}}</a
|
|
|
|
> | {% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %} {% if site.data.social-media %}
|
|
|
|
<div id="social-media">
|
|
|
|
{% assign sm = site.data.social-media %} {% for entry in sm%} {% assign
|
|
|
|
key = entry | first %} {% if sm[key].footer %} {% if sm[key].id %}
|
|
|
|
<a
|
2024-09-16 02:25:19 +02:00
|
|
|
href="{{sm[key].href}}"
|
2023-07-24 10:00:07 +02:00
|
|
|
title="{{sm[key].title}}"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener {{sm[key].rel}}"
|
|
|
|
><img
|
|
|
|
src="/assets/images/sm_logos/{{sm[key].logo]}}"
|
|
|
|
height="32px"
|
|
|
|
alt="{{sm[key].link}}"
|
|
|
|
/></a>
|
|
|
|
{% endif %} {% endif %} {% endfor %}
|
|
|
|
</div>
|
2021-06-15 03:31:51 +02:00
|
|
|
{% endif %}
|
2023-07-24 10:00:07 +02:00
|
|
|
<p>
|
|
|
|
Handmade with <span class="entypo red">♥</span> in
|
|
|
|
<a
|
|
|
|
href="https://www.stadt-stade.info/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>Hansestadt Stade</a
|
|
|
|
><br />© {{'now' | date: "%Y"}} Nico Jensen
|
|
|
|
</p>
|
2021-06-15 03:31:51 +02:00
|
|
|
</div>
|
2022-09-23 00:46:42 +02:00
|
|
|
</footer>
|