2023-09-29 04:03:51 +02:00
|
|
|
<div class="page__footer-follow">
|
|
|
|
<ul class="social-icons">
|
|
|
|
{% if site.data.ui-text[site.locale].follow_label %}
|
|
|
|
<li><strong>{{ site.data.ui-text[site.locale].follow_label }}</strong></li>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.footer.links %}
|
|
|
|
{% for link in site.footer.links %}
|
|
|
|
{% if link.label and link.url %}
|
|
|
|
<li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i> {{ link.label }}</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2023-09-30 18:45:32 +02:00
|
|
|
|
|
|
|
<!-- hacks-guide change start: force disable atom feed-->
|
2023-09-29 04:03:51 +02:00
|
|
|
<!--
|
|
|
|
{% unless site.atom_feed.hide %}
|
|
|
|
<li><a href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | relative_url }}{% endif %}"><i class="fas fa-fw fa-rss-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}</a></li>
|
|
|
|
{% endunless %}
|
|
|
|
</ul>
|
|
|
|
-->
|
2023-09-30 18:45:32 +02:00
|
|
|
<!-- hacks-guide change end -->
|
|
|
|
|
2023-09-29 04:03:51 +02:00
|
|
|
</div>
|
|
|
|
|
2023-09-30 18:45:32 +02:00
|
|
|
<!-- hacks-guide change start: custom footer -->
|
2019-07-06 03:46:01 +02:00
|
|
|
{% assign split_path = page.path | split: "/" %}
|
|
|
|
{% assign locale = split_path[1] %}
|
2021-10-10 21:02:22 +02:00
|
|
|
{% assign titles = site.data.navigation[locale].footer %}
|
2023-09-29 04:03:51 +02:00
|
|
|
<div class="page__footer-copyright">© {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}. - <a href="site-navigation">{{ titles[1].title }}</a> - <a href="privacy-policy">{{ titles[2].title }}</a> <!-- {{ 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>
|
2023-09-30 18:45:32 +02:00
|
|
|
<!-- hacks-guide change end -->
|