nicojensen.de/_includes/footer.html
Nico Jensen abdd659322 * Add: New Post: Update!
* Add: Changelog to README.md.
* Add: Social Media Links at Footer.
* Add: data.settings to manage settings.
* Fix: Linklog link did not work at blog overview.
* Fix: Pagination View - older was displayed on the left when no newer was there.
* Change: Header and Footer Navigation links work now with data yml files.
* Change: New Sort and some Content modification at Contact Page.
* Change: set sitemap false on 404 & 500 page.
* Change: new text on 404 & 500 page.
* Change: robots.txt now allow searchengines with settings.
* Change: some new meta tags
* Change: link style
* Change: remove Header Navigation
2021-06-15 03:31:51 +02:00

31 lines
No EOL
1.1 KiB
HTML

<footer class="site-footer clearfix">
<div class="wrapper">
{% if site.data.footer-links %}
<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>
{% if fkey != 'rss' %}
&nbsp;|&nbsp;
{% endif %}
{% 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].id %}
<a href="{{sm[key].href}}{{sm[key].id}}" title="{{sm[key].title}}" rel="nofollow">{{sm[key].link}}</a>
{% if key != 'instagram' %}
&nbsp;|&nbsp;
{% endif %}
{% endif %}
{% endfor %}
</div>
{% endif %}
<p>Handmade with <span class="entypo red"></span> in Hamburg<br>&copy; {{'now' | date: "%Y"}} Nico Jensen</p>
</div>
</footer>