2022-06-08 11:15:38 +03:00
|
|
|
<!-- The Footer -->
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2023-09-06 20:58:03 +03:00
|
|
|
<footer
|
2023-09-08 17:48:37 +03:00
|
|
|
aria-label="Site Info"
|
2023-09-06 20:58:03 +03:00
|
|
|
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>
|
2024-01-19 00:48:26 +03:00
|
|
|
{{- '©' }}
|
2023-09-08 17:48:37 +03:00
|
|
|
<time>{{ 'now' | date: '%Y' }}</time>
|
2024-01-19 00:48:26 +03:00
|
|
|
|
|
|
|
{% if site.social.links %}
|
|
|
|
<a href="{{ site.social.links[0] }}">{{ site.social.name }}</a>.
|
|
|
|
{% else %}
|
|
|
|
<em class="fst-normal">{{ site.social.name }}</em>.
|
|
|
|
{% endif %}
|
|
|
|
|
2023-09-06 20:58:03 +03:00
|
|
|
{% 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>
|
2021-07-20 20:01:09 +03:00
|
|
|
|
2023-09-06 20:58:03 +03:00
|
|
|
<p>
|
|
|
|
{%- capture _platform -%}
|
|
|
|
<a href="https://jekyllrb.com" target="_blank" rel="noopener">Jekyll</a>
|
|
|
|
{%- endcapture -%}
|
2023-04-02 07:10:08 +03:00
|
|
|
|
2023-09-06 20:58:03 +03:00
|
|
|
{%- capture _theme -%}
|
|
|
|
<a href="https://github.com/cotes2020/jekyll-theme-chirpy" target="_blank" rel="noopener">Chirpy</a>
|
|
|
|
{%- endcapture -%}
|
2021-07-20 20:01:09 +03:00
|
|
|
|
2023-09-06 20:58:03 +03:00
|
|
|
{{ site.data.locales[include.lang].meta | replace: ':PLATFORM', _platform | replace: ':THEME', _theme }}
|
|
|
|
</p>
|
2019-09-30 15:38:41 +03:00
|
|
|
</footer>
|