krata/_includes/footer.html

37 lines
1.2 KiB
HTML
Raw Normal View History

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