59 lines
2 KiB
HTML
59 lines
2 KiB
HTML
|
|
<footer class="content-footer" id="main-footer">
|
|
<div class="limit">
|
|
<nav class="footer-contact p-author h-card vcard">
|
|
<img class="photo avatar u-photo u-avatar" src="{{ site.url }}/{{ site.author.avatar }}" alt="Photo of {{ site.author.name }}" />
|
|
<dl>
|
|
|
|
<dt>name</dt>
|
|
<dd>
|
|
<a class="fn p-name url u-url u-uid" href="{{ site.author.url }}">{{ site.author.name }}</a>
|
|
</dd>
|
|
<dt>email</dt>
|
|
<dd>
|
|
<svg class="icon"><use xlink:href="#icon-email" /></svg>
|
|
<a rel="me" class="u-email email" href="mailto:{{ site.author.email }}">{{ site.author.email }}</a>
|
|
</dd>
|
|
<dt>GPG/PGP public key</dt>
|
|
<dd>
|
|
<svg class="icon"><use xlink:href="#icon-key" /></svg>
|
|
<a rel="me" class="u-gpg gpg" href="{{ site.url }}/pgp.asc"> {{ site.author.gpg }}</a>
|
|
</dd>
|
|
{% for silo, url in site.author.socials.items() %}
|
|
<dt>{{ silo }}</dt>
|
|
<dd>
|
|
<svg class="icon"><use xlink:href="#icon-{{ silo }}" /></svg>
|
|
<a rel="me" class="u-{{ silo }} url u-url" href="{{ url }}">{{ silo }}</a>
|
|
</dd>
|
|
{% endfor %}
|
|
<dt>copyright notes</dt>
|
|
<dd>
|
|
<a rel="license" href="{{ site.url }}/licence" title="Licence"><span class="icon">©</span> copyright notes</a>
|
|
</dd>
|
|
<dt>RSS feed</dt>
|
|
<dd>
|
|
<svg class="icon"><use xlink:href="#icon-rss" /></svg>
|
|
<a title="RSS feed" href="{{ site.url }}/feed/">RSS</a>
|
|
</dd>
|
|
<dt>Donation</dt>
|
|
<dd>
|
|
<svg class="icon"><use xlink:href="#icon-creditcard" /></svg>
|
|
<a title="Like the content? You can thank it with a coffee." href="{{ site.author.donateurl }}">Buy me a coffee!</a>
|
|
</dd>
|
|
</dl>
|
|
</nav>
|
|
<aside class="footer-notes p-note">
|
|
{{ site.author.note }}
|
|
{% for title, vcard in site.author.qr.items() %}
|
|
<figure>
|
|
<img src="{{ vcard }}" alt="{{ title }}" />
|
|
<figcaption>{{ title }}</figcaption>
|
|
</figure>
|
|
{% endfor %}
|
|
</aside>
|
|
<a href="/notforbot" title="This link is here to identify bad robots. Don't follow it. Don't click on it." rel="nofollow"></a>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|