krata/_includes/footer.html

38 lines
1.2 KiB
HTML
Raw Normal View History

2019-09-30 14:38:41 +02:00
<!--
The Footer
-->
<footer class="d-flex w-100 justify-content-center">
2021-12-04 20:23:00 +01:00
<div class="d-flex justify-content-between align-items-center text-muted">
2020-02-16 19:55:16 +01:00
<div class="footer-left">
2019-09-30 14:38:41 +02:00
<p class="mb-0">
© {{ 'now' | date: "%Y" }}
2020-02-16 19:55:16 +01:00
<a href="{{ site.social.links[0] }}">{{ site.social.name }}</a>.
{% if site.data.locales[lang].copyright.brief %}
2020-02-16 19:55:16 +01:00
<span data-toggle="tooltip" data-placement="top"
title="{{ site.data.locales[lang].copyright.verbose }}">{{ site.data.locales[lang].copyright.brief }}</span>
2020-02-16 19:55:16 +01:00
{% endif %}
2019-09-30 14:38:41 +02:00
</p>
</div>
2020-02-16 19:55:16 +01:00
<div class="footer-right">
2019-09-30 14:38:41 +02:00
<p class="mb-0">
2021-07-20 19:01:09 +02:00
{% capture _platform %}
<a href="https://jekyllrb.com" target="_blank" rel="noopener">Jekyll</a>
{% endcapture %}
{% capture _theme %}
<a href="https://github.com/cotes2020/jekyll-theme-chirpy" target="_blank" rel="noopener">Chirpy</a>
{% endcapture %}
{{ site.data.locales[lang].meta
2021-07-20 19:01:09 +02:00
| default: 'Powered by :PLATFORM with :THEME theme.'
| replace: ':PLATFORM', _platform | replace: ':THEME', _theme
}}
2019-09-30 14:38:41 +02:00
</p>
</div>
2020-02-16 19:55:16 +01:00
2019-09-30 14:38:41 +02:00
</div> <!-- div.d-flex -->
</footer>