2016-03-11 21:55:06 +01:00
|
|
|
<div class="page__footer-follow">
|
2016-03-23 03:59:39 +01:00
|
|
|
<ul class="social-icons">
|
2016-03-11 22:18:58 +01:00
|
|
|
{% if site.data.ui-text[site.locale].follow_label %}
|
|
|
|
<li><strong>{{ site.data.ui-text[site.locale].follow_label }}</strong></li>
|
|
|
|
{% endif %}
|
2016-03-09 21:54:20 +01:00
|
|
|
{% if site.twitter.username %}
|
2016-04-01 21:39:57 +02:00
|
|
|
<li><a href="https://twitter.com/{{ site.twitter.username }}"><i class="fa fa-fw fa-twitter-square" aria-hidden="true"></i> Twitter</a></li>
|
2016-03-09 21:54:20 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if site.facebook.username %}
|
2017-11-13 14:08:27 +01:00
|
|
|
<li><a href="https://www.facebook.com/{{ site.facebook.username }}"><i class="fa fa-fw fa-facebook-square" aria-hidden="true"></i> Facebook</a></li>
|
2016-03-09 21:54:20 +01:00
|
|
|
{% endif %}
|
2016-04-15 15:18:31 +02:00
|
|
|
{% if site.author.github %}
|
2017-11-13 14:08:27 +01:00
|
|
|
<li><a href="https://github.com/{{ site.author.github }}"><i class="fa fa-fw fa-github" aria-hidden="true"></i> GitHub</a></li>
|
2016-04-15 15:18:31 +02:00
|
|
|
{% endif %}
|
2017-07-05 18:25:41 +02:00
|
|
|
{% if site.author.gitlab %}
|
2017-11-13 14:08:27 +01:00
|
|
|
<li><a href="https://gitlab.com/{{ site.author.gitlab }}"><i class="fa fa-fw fa-gitlab" aria-hidden="true"></i> Gitlab</a></li>
|
2017-07-05 18:25:41 +02:00
|
|
|
{% endif %}
|
2016-04-15 15:18:31 +02:00
|
|
|
{% if site.author.bitbucket %}
|
2017-11-13 14:08:27 +01:00
|
|
|
<li><a href="https://bitbucket.org/{{ site.author.bitbucket }}"><i class="fa fa-fw fa-bitbucket" aria-hidden="true"></i> Bitbucket</a></li>
|
2016-04-15 15:18:31 +02:00
|
|
|
{% endif %}
|
2016-10-06 21:40:30 +02:00
|
|
|
<li><a href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | absolute_url }}{% endif %}"><i class="fa fa-fw fa-rss-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}</a></li>
|
2016-03-09 21:54:20 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2017-11-12 23:07:33 +01:00
|
|
|
<div class="page__footer-copyright">© {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}. {{ site.data.ui-text[site.locale].powered_by | default: "Powered by" }} <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> & <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.</div>
|