505e314a31
Fixes #1196
36 lines
1 KiB
HTML
36 lines
1 KiB
HTML
<!-- The Footer -->
|
|
|
|
<footer
|
|
aria-label="Site Info"
|
|
class="
|
|
d-flex flex-column justify-content-center text-muted
|
|
flex-lg-row justify-content-lg-between align-items-lg-center pb-lg-3
|
|
"
|
|
>
|
|
<p>
|
|
{{ '©' }}
|
|
<time>{{ 'now' | date: '%Y' }}</time>
|
|
<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>
|
|
|
|
<p>
|
|
{%- 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[include.lang].meta | replace: ':PLATFORM', _platform | replace: ':THEME', _theme }}
|
|
</p>
|
|
</footer>
|