beautifulSA-jekyll/_includes/footer.html

42 lines
1.3 KiB
HTML
Raw Normal View History

2015-03-02 21:06:05 +01:00
<footer>
<div class="container-md beautiful-jekyll-footer">
2015-03-02 21:06:05 +01:00
<div class="row">
<div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
{% include social-networks-links.html %}
2020-04-28 23:24:45 +02:00
{% if page.footer-extra %}
<div class="footer-custom-content">
{% for file in page.footer-extra %}
{% include {{ file }} %}
{% endfor %}
2020-04-28 23:24:45 +02:00
</div>
{% endif %}
<p class="copyright text-muted">
2020-04-24 02:30:01 +02:00
{% if site.author %}
{{ site.author }}
&nbsp;&bull;&nbsp;
{% endif %}
{{ site.time | date: '%Y' }}
2016-08-09 14:50:42 +02:00
{% if site.url-pretty %}
&nbsp;&bull;&nbsp;
2020-09-13 03:07:08 +02:00
<span class="author-site">
<a href="{% if site.url-canonical %}{{ site.url-canonical }}{% else %}{{ '' | absolute_url }}{% endif %}">{{ site.url-pretty }}</a>
</span>
{% endif %}
{% if site.matomo %}
{% if site.matomo.opt-out %}
2018-01-22 08:31:18 +01:00
&nbsp;&bull;&nbsp;
<a href="http://{{- site.matomo.uri -}}/index.php?module=CoreAdminHome&action=optOut" target="_blank" class="text_muted">Do-not-Track</a>
{% endif %}
{% endif%}
</p>
2020-08-21 18:38:18 +02:00
{% unless site.remove-ads %}<p class="theme-by text-muted">
2020-09-04 07:17:17 +02:00
Powered by
<a href="https://beautifuljekyll.com">Beautiful Jekyll</a>
2020-08-21 18:38:18 +02:00
</p>{% endunless %}
2015-03-02 21:06:05 +01:00
</div>
</div>
</div>
</footer>