krata/_includes/footer.html

44 lines
1.3 KiB
HTML
Raw Normal View History

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