krata/_includes/footer.html

35 lines
1.1 KiB
HTML
Raw Normal View History

<!-- The Footer -->
2019-09-30 14:38:41 +02:00
<footer>
<div class="container px-lg-4">
<div class="d-flex justify-content-center align-items-center text-muted mx-md-3">
<p>
{%- 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 -%}
{{ site.data.locales[include.lang].meta | replace: ':PLATFORM', _platform | replace: ':THEME', _theme }}
</p>
2021-07-20 19:01:09 +02:00
<p>
{{- '©' }}
{{ 'now' | date: '%Y' }}
<a href="{{ site.social.links[0] }}">{{ site.social.name }}</a>.
{% if site.data.locales[include.lang].copyright.brief %}
<span
data-bs-toggle="tooltip"
data-bs-placement="top"
title="{{ site.data.locales[include.lang].copyright.verbose }}"
>
{{- site.data.locales[include.lang].copyright.brief -}}
</span>
{% endif %}
</p>
2019-09-30 14:38:41 +02:00
</div>
</div>
2019-09-30 14:38:41 +02:00
</footer>