2019-09-30 15:38:41 +03:00
|
|
|
<!--
|
|
|
|
The Footer
|
|
|
|
-->
|
|
|
|
|
|
|
|
<footer class="d-flex w-100 justify-content-center">
|
2020-02-16 21:55:16 +03:00
|
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
|
|
<div class="footer-left">
|
2019-09-30 15:38:41 +03:00
|
|
|
<p class="mb-0">
|
2021-02-26 14:25:53 +03:00
|
|
|
©
|
|
|
|
<!-- years range -->
|
|
|
|
{% assign this_year = "now" | date: "%Y" | plus: 0 %}
|
|
|
|
{% assign years_range = this_year %}
|
|
|
|
{% if site.data.rights.first_publication_year < this_year
|
|
|
|
and site.data.rights.first_publication_year %}
|
|
|
|
{{ site.data.rights.first_publication_year }} -
|
|
|
|
{% endif %}
|
|
|
|
{{ this_year }}
|
|
|
|
<!-- copyright owner -->
|
2020-02-16 21:55:16 +03:00
|
|
|
<a href="{{ site.social.links[0] }}">{{ site.social.name }}</a>.
|
2021-02-26 14:25:53 +03:00
|
|
|
<!-- copyright statement -->
|
2020-04-06 21:11:50 +03:00
|
|
|
{% if site.data.rights.brief %}
|
2020-02-16 21:55:16 +03:00
|
|
|
<span data-toggle="tooltip" data-placement="top"
|
2021-02-26 14:25:53 +03:00
|
|
|
title="{{ site.data.rights.verbose }}">
|
|
|
|
{{ site.data.rights.brief }}
|
|
|
|
</span>
|
2020-02-16 21:55:16 +03:00
|
|
|
{% endif %}
|
2019-09-30 15:38:41 +03:00
|
|
|
</p>
|
2021-02-26 14:25:53 +03:00
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
</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">
|
2020-02-16 21:55:16 +03:00
|
|
|
Powered by
|
2020-10-26 23:11:21 +03:00
|
|
|
<a href="https://jekyllrb.com" target="_blank" rel="noopener">Jekyll</a>
|
2020-05-05 20:15:40 +03:00
|
|
|
with
|
2021-01-26 21:51:50 +03:00
|
|
|
<a href="https://github.com/cotes2020/jekyll-theme-chirpy"
|
|
|
|
target="_blank" rel="noopener">Chirpy</a>
|
2020-05-05 20:15:40 +03:00
|
|
|
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>
|