nasg/templates/block_footer.html

60 lines
2.2 KiB
HTML
Raw Normal View History

2017-05-23 11:21:10 +01:00
2018-06-01 10:48:03 +01:00
<footer class="content-footer" id="main-footer">
<nav class="footer-contact p-author h-card vcard limit">
<h2>Site author</h2>
<dl>
<dt>
<img class="photo avatar u-photo u-avatar" src="{{ site.author.avatar }}" alt="Photo of {{ site.author.name }}" />
</dt>
<dd>
<a class="fn p-name url u-url u-uid" href="/about.html">
{{ site.author.name }}
</a>
</dd>
<dt>email</dt>
<dd>
<a rel="me" class="u-email email" href="mailto:{{ site.author.email }}">
{{ site.author.email }}
</a>
</dd>
2018-03-21 15:43:35 +00:00
{% if site.author.sip %}
2018-06-01 10:48:03 +01:00
<dt>SIP</dt>
<dd>
<a rel="me" class="u-sip sip" href="sip:{{ site.author.sip }}">
{{ site.author.sip }}
</a>
</dd>
{% endif %}
{% if site.author.xmpp %}
2018-06-01 10:48:03 +01:00
<dt>XMPP</dt>
<dd>
<a rel="me" class="u-xmpp xmpp" href="xmpp:{{ site.author.xmpp }}">{{ site.author.xmpp }}</a>
</dd>
2018-03-21 15:43:35 +00:00
{% endif %}
{% if site.author.gpg %}
2018-06-01 10:48:03 +01:00
<dt>GPG</dt>
<dd>
<a rel="me" class="u-gpg gpg" href="/{{ site.author.gpg }}">key</a>
</dd>
{% endif %}
{% if site.author.flickr %}
2018-06-01 10:48:03 +01:00
<dt>flickr</dt>
<dd>
<a rel="me" class="u-flickr" href="https://flickr.com/people/{{ site.author.flickr }}">{{ site.author.flickr }}</a>
</dd>
{% endif %}
{% if site.author.github %}
2018-06-01 10:48:03 +01:00
<dt>github</dt>
<dd>
<a rel="me" class="u-github" href="https://github.com/{{ site.author.github }}">{{ site.author.github }}</a>
</dd>
{% endif %}
2018-06-01 10:48:03 +01:00
</dl>
</nav>
</footer>
2017-05-23 11:21:10 +01:00
{% include 'symbols.svg' %}
2018-06-01 10:48:03 +01:00
</body>
2017-05-26 15:09:16 +01:00
</html>