nasg/block_footer.html

56 lines
1.8 KiB
HTML
Raw Normal View History

2017-05-23 11:21:10 +01:00
<footer class="content-footer" id="main-footer">
<div class="limit">
<nav class="footer-contact p-author h-card vcard">
2017-08-17 12:33:54 +01:00
<img class="photo avatar u-photo u-avatar" src="{{ site.author.avatar }}" alt="Photo of {{ site.author.name }}" />
2017-05-23 11:21:10 +01:00
<dl>
<dt>name</dt>
<dd>
2017-08-17 12:33:54 +01:00
<a class="fn p-name url u-url u-uid" href="{{ site.author.url }}/about">{{ site.author.name }}</a>
2017-05-23 11:21:10 +01:00
</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 %}
2017-08-17 12:33:54 +01:00
<dt>Feed</dt>
2017-05-23 11:21:10 +01:00
<dd>
<svg class="icon"><use xlink:href="#icon-rss" /></svg>
2017-08-17 12:33:54 +01:00
<a title="Feed" href="{{ site.url }}/feed/">Feed</a>
</dd>
<dt>CV</dt>
<dd>
<svg class="icon"><use xlink:href="#icon-note" /></svg>
<a class="u-url u-resume" href="{{ site.author.url }}/cv">CV</a>
2017-05-23 11:21:10 +01:00
</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>
2017-05-23 11:21:10 +01:00
<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>
2017-05-26 15:09:16 +01:00
</html>