47 lines
2.1 KiB
HTML
47 lines
2.1 KiB
HTML
<footer class="site-footer small text-muted py-3 fixed-bottom">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
<nav class="nav">
|
|
<ul class="nav">
|
|
{% for item in site.data.footer-menu.items %}
|
|
<li class="nav-item"><a class="nav-link" href="{{ item.link }}">{{ item.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
<a href="https://uberspace.de">
|
|
<img src="/assets/images/uberspace-badge-white.png" />
|
|
</a>
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<ul class="list-unstyled">
|
|
{% if site.data.author.github_username %}
|
|
<li>
|
|
{% include icon-github.html username=site.data.author.github_username %}
|
|
</li>
|
|
{% endif %}
|
|
|
|
{% if site.data.author.twitter_username %}
|
|
<li>
|
|
{% include icon-twitter.html username=site.data.author.twitter_username %}
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
|
|
<img alt="Creative Commons License" style="border-width:0"
|
|
src="/assets/images/cc-by-sa40.png"/>
|
|
</a><br/>
|
|
<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">2martens dot de</span> by
|
|
<a xmlns:cc="http://creativecommons.org/ns" href="https://2martens.de"
|
|
property="cc:attributionName"
|
|
rel="cc:attributionURL">
|
|
Jim Martens
|
|
</a> is licensed under a
|
|
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
|
|
Creative Commons Attribution-ShareAlike 4.0 International License
|
|
</a>.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|