16fb2bb919
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
27 lines
1 KiB
HTML
Executable file
27 lines
1 KiB
HTML
Executable file
<!-- 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>
|