* 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
31 lines
No EOL
1.1 KiB
HTML
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' %}
|
|
|
|
|
{% 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' %}
|
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
<p>Handmade with <span class="entypo red">♥</span> in Hamburg<br>© {{'now' | date: "%Y"}} Nico Jensen</p>
|
|
</div>
|
|
</footer> |