web/_includes/footer.html

30 lines
882 B
HTML
Raw Normal View History

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">
2020-02-16 21:55:16 +03:00
© {{ 'now' | date: "%Y" }}
<a href="{{ site.social.links[0] }}">{{ site.social.name }}</a>.
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"
2020-04-06 21:11:50 +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>
</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
<a href="https://jekyllrb.com" target="_blank" rel="noopener">Jekyll</a>
with
<a href="{{ site.data.meta.homepage }}" target="_blank" rel="noopener">{{ site.data.meta.name }}</a>
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>