33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
|
<!-- Footer -->
|
||
|
<footer id="footer" class="wrapper style1 align-center">
|
||
|
<div class="footflex">
|
||
|
<div>
|
||
|
<h4>{{ site.title }}</h4>
|
||
|
<p>{{ site.description }}
|
||
|
<br /><a href="mailto:{{ site.publisher.email }}">{{ site.publisher.email }}</a></p>
|
||
|
</div>
|
||
|
<div>
|
||
|
<ul>
|
||
|
{% if page.url != '/' %}
|
||
|
<li><a href="{{ relBase }}/">{{ site.data.translations[page.lang].home }}</a></li>
|
||
|
{% endif %}
|
||
|
{% for entry in site.data.navigation %}
|
||
|
<li><a href="{{ entry.url }}">{{ entry.name }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div><img src="{{ relBase }}{{ site.logo-footer }}" style="max-width:300px" alt="{{ site.title }} Logo" /></div>
|
||
|
</div>
|
||
|
<div class="inner">
|
||
|
<ul class="icons">
|
||
|
{% for nw in site.data.social %}
|
||
|
|
||
|
<li><a target="_blank" alt="{{ site.title }} on {{ nw.name }}" title="{{ site.title }} on {{ nw.name }}" rel="noopener" href="{{ nw.url }}" class="icon brands style2 {{ nw.icon }}"><span class="label">{{ nw.name }}</span></a></li>
|
||
|
|
||
|
{% endfor %}
|
||
|
|
||
|
</ul>
|
||
|
<p>©{{ site.time | date: '%Y' }} {{ site.publisher.name }} | <a href="{{ relBase }}/webcreds/">Credits</a> | <a href="{{ relBase }}/cookies/">Cookies & Privacy</a></p>
|
||
|
</div>
|
||
|
</footer>
|