2022-06-08 11:15:38 +03:00
|
|
|
<!-- The Footer -->
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2022-09-28 12:21:32 +03: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 22:53:47 +03:00
|
|
|
{% if site.data.locales[site.lang].copyright.brief %}
|
2022-09-28 12:21:32 +03:00
|
|
|
<span data-toggle="tooltip" data-placement="top"
|
2022-10-18 22:53:47 +03:00
|
|
|
title="{{ site.data.locales[site.lang].copyright.verbose }}">{{ site.data.locales[site.lang].copyright.brief }}</span>
|
2022-09-28 12:21:32 +03:00
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="footer-right">
|
|
|
|
<p class="mb-0">
|
2020-02-16 21:55:16 +03:00
|
|
|
|
2022-12-25 18:36:56 +03:00
|
|
|
{%- capture _platform -%}
|
2021-07-20 20:01:09 +03:00
|
|
|
<a href="https://jekyllrb.com" target="_blank" rel="noopener">Jekyll</a>
|
2022-12-25 18:36:56 +03:00
|
|
|
{%- endcapture -%}
|
2021-07-20 20:01:09 +03:00
|
|
|
|
2022-12-25 18:36:56 +03:00
|
|
|
{%- capture _theme -%}
|
2021-07-20 20:01:09 +03:00
|
|
|
<a href="https://github.com/cotes2020/jekyll-theme-chirpy" target="_blank" rel="noopener">Chirpy</a>
|
2022-12-25 18:36:56 +03:00
|
|
|
{%- endcapture -%}
|
2021-07-20 20:01:09 +03:00
|
|
|
|
2022-10-18 22:53:47 +03:00
|
|
|
{{ site.data.locales[site.lang].meta
|
2022-12-25 18:36:56 +03:00
|
|
|
| default: 'Using the :PLATFORM theme :THEME.'
|
2022-09-28 12:21:32 +03:00
|
|
|
| replace: ':PLATFORM', _platform | replace: ':THEME', _theme
|
|
|
|
}}
|
|
|
|
</p>
|
|
|
|
</div>
|
2019-09-30 15:38:41 +03:00
|
|
|
</div>
|
2022-06-08 11:15:38 +03:00
|
|
|
</div>
|
2019-09-30 15:38:41 +03:00
|
|
|
</footer>
|