2020-07-24 14:34:09 +02:00
|
|
|
<!-- Footer -->
|
2020-08-03 21:40:11 +02:00
|
|
|
{% unless page.collection == 'tracks' %}
|
2020-07-27 14:51:25 +02:00
|
|
|
{% include streamer.html %}
|
2020-08-03 21:40:11 +02:00
|
|
|
{% endunless %}
|
|
|
|
<footer>
|
|
|
|
<div>
|
|
|
|
<h3>{{ site.title }}</h3>
|
|
|
|
<p>{{ site.description }}</p>
|
|
|
|
<ul>
|
|
|
|
{% if page.url != '/' %}
|
|
|
|
<li><a href="{{ relBase }}/">Home</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% for entry in site.data.navigation %}
|
|
|
|
<li><a href="{{ entry.url }}">{{ entry.name }}</a></li>
|
2020-07-24 14:34:09 +02:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2020-08-04 10:48:11 +02:00
|
|
|
<div><img src="{{ relBase }}{{ site.banner-vert }}" width="100%" alt="{{ site.title }} Logo" /></div>
|
2020-08-03 21:40:11 +02:00
|
|
|
<div style="text-align: center;">
|
|
|
|
{% for nw in site.data.social %}
|
|
|
|
<a target="_blank" alt="{{ site.title }} on {{ nw.name }}" title="{{ site.title }} on {{ nw.name }}" rel="noopener"
|
|
|
|
href="{{ nw.url }}" class="icon small fab {{ nw.icon }}"><span class="label">{{ nw.name }}</span></a>
|
|
|
|
{% endfor %}
|
2020-08-05 15:54:25 +02:00
|
|
|
<a target="_blank" alt="email" title="email" href="mailto:{{ site.social.mail }}" class="icon small fas fa-envelope-open-text"><span
|
2020-08-03 21:40:11 +02:00
|
|
|
class="label">Email</span></a>
|
|
|
|
</div>
|
|
|
|
<small>
|
|
|
|
|
|
|
|
<p>©{{ site.time | date: '%Y' }} {{ site.publisher.name }} | <a href="{{ relBase }}/webcreds/">Credits</a> | <a
|
|
|
|
href="{{ relBase }}/cookies/">Cookies & Privacy</a></p>
|
|
|
|
</small>
|
2020-07-24 14:34:09 +02:00
|
|
|
</footer>
|