2019-09-30 15:38:41 +03:00
|
|
|
<!--
|
|
|
|
The Footer
|
|
|
|
-->
|
|
|
|
|
|
|
|
<footer class="d-flex w-100 justify-content-center">
|
2021-12-04 22:23:00 +03:00
|
|
|
<div class="d-flex justify-content-between align-items-center text-muted">
|
2020-02-16 21:55:16 +03:00
|
|
|
<div class="footer-left">
|
2019-09-30 15:38:41 +03:00
|
|
|
<p class="mb-0">
|
2021-03-20 17:41:35 +03:00
|
|
|
© {{ 'now' | date: "%Y" }}
|
2020-02-16 21:55:16 +03:00
|
|
|
<a href="{{ site.social.links[0] }}">{{ site.social.name }}</a>.
|
2021-08-01 16:54:27 +03:00
|
|
|
{% if site.data.locales[lang].copyright.brief %}
|
2020-02-16 21:55:16 +03:00
|
|
|
<span data-toggle="tooltip" data-placement="top"
|
2021-08-01 16:54:27 +03:00
|
|
|
title="{{ site.data.locales[lang].copyright.verbose }}">{{ site.data.locales[lang].copyright.brief }}</span>
|
2020-02-16 21:55:16 +03:00
|
|
|
{% endif %}
|
2019-09-30 15:38:41 +03:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-02-16 21:55:16 +03:00
|
|
|
|
|
|
|
<div class="footer-right">
|
2019-09-30 15:38:41 +03:00
|
|
|
<p class="mb-0">
|
2021-07-20 20:01:09 +03:00
|
|
|
{% 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 %}
|
|
|
|
|
2021-08-01 16:54:27 +03:00
|
|
|
{{ site.data.locales[lang].meta
|
2021-07-20 20:01:09 +03:00
|
|
|
| default: 'Powered by :PLATFORM with :THEME theme.'
|
|
|
|
| replace: ':PLATFORM', _platform | replace: ':THEME', _theme
|
|
|
|
}}
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-02-16 21:55:16 +03:00
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
</div> <!-- div.d-flex -->
|
|
|
|
</footer>
|