beautifulSA-jekyll/_includes/footer.html

55 lines
2.1 KiB
HTML
Raw Normal View History

2015-03-02 21:06:05 +01:00
<footer>
2015-09-08 12:08:13 +02:00
<div class="container beautiful-jekyll-footer">
2015-03-02 21:06:05 +01:00
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center footer-links">
{%- for link in site.social-network-links -%}
{%- assign curkey = link[0] -%}
{%- assign element = site.data.SocialNetworks[curkey] -%}
{%- if curkey == 'rss' -%}
{%- capture url -%}{{ '/feed.xml' | relative_url }}{%- endcapture -%}
{%- else -%}
{%- assign value = site.social-network-links[curkey] -%}
{%- assign placeholder = "{value}" -%}
{%- capture url -%}{{ element.urlTemplate | replace: placeholder, value }}{%- endcapture -%}
{%- endif -%}
<li>
<a href="{{ url }}" title="{{ element.name }}">
<span class="fa-stack fa-lg" aria-hidden="true">
2020-03-16 19:36:28 +01:00
<i class="fas fa-circle fa-stack-2x"></i>
<i class="{{ element.icon }} fa-stack-1x fa-inverse"></i>
</span>
<span class="sr-only">{{ element.name }}</span>
</a>
</li>
{%- endfor -%}
2015-03-02 21:06:05 +01:00
</ul>
<p class="copyright text-muted">
{% if site.author.name %}
{{ site.author.name }}
&nbsp;&bull;&nbsp;
{% endif %}
{{ site.time | date: '%Y' }}
2016-08-09 14:50:42 +02:00
{% if site.url-pretty %}
&nbsp;&bull;&nbsp;
<a href="{{ '' | absolute_url }}">{{ site.url-pretty }}</a>
{% 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>
<!-- Please don't remove this, keep my open source work credited :) -->
<p class="theme-by text-muted">
Theme by
2018-10-11 18:03:02 +02:00
<a href="https://deanattali.com/beautiful-jekyll/">beautiful-jekyll</a>
</p>
2015-03-02 21:06:05 +01:00
</div>
</div>
</div>
</footer>