28 lines
1 KiB
HTML
28 lines
1 KiB
HTML
|
<!-- Footer -->
|
||
|
<footer id="footer">
|
||
|
<ul class="icons">
|
||
|
{% for socloc in site.social %}
|
||
|
{% if socloc[1] %}
|
||
|
{% if socloc[0] == 'email' %}
|
||
|
<li><a target="_blank" href="{{ socloc[1] }}" class="icon fa-envelope-o"
|
||
|
><span class="label">E-mail</span></a></li>
|
||
|
{% else %}
|
||
|
<li><a target="_blank" href="{{ socloc[1] }}" class="icon fa-{{ socloc[0] }}"
|
||
|
><span class="label">{{ socloc[0] }}</span></a></li>
|
||
|
{% endif %}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
<ul class="copyright">
|
||
|
<li>© {% assign thisyear = site.time | date: "%Y" %}
|
||
|
{% if site.first_published %}
|
||
|
{% capture diff %}{{ site.first_published | minus:thisyear }}{% endcapture %}
|
||
|
{% if diff contains '-' %}{{ site.first_published }},{% endif %}
|
||
|
{% endif %}
|
||
|
{{ thisyear }}
|
||
|
{% if site.owner %}{{ site.owner }}{% else %}{{ site.title }}{% endif %}</li>
|
||
|
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||
|
<li>Built with: <a href="https://jekyllrb.com" target="_blank">Jekyll</a></li>
|
||
|
</ul>
|
||
|
</footer>
|