nicojensen.de/_includes/footer.html

39 lines
1.3 KiB
HTML
Raw Normal View History

2019-03-12 13:49:49 +01:00
<footer class="site-footer clearfix">
<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 %}&nbsp;|&nbsp; {% for
footerlink in footerlinks %} {% assign fkey = footerlink | first %}
<a href="{{footerlinks[fkey].href}}" title="{{footerlinks[fkey].title}}"
>{{footerlinks[fkey].title}}</a
>&nbsp;|&nbsp; {% 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>
{% 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 />&copy; {{'now' | date: "%Y"}} Nico Jensen
</p>
</div>
2022-09-23 00:46:42 +02:00
</footer>