nasg/templates/block_footer.html

44 lines
1.2 KiB
HTML
Raw Normal View History

2017-05-23 11:21:10 +01:00
<footer class="content-footer" id="main-footer">
<nav class="footer-contact p-author h-card vcard limit">
<h2>Author</h2>
<dl>
<dt>name</dt>
<dd>
2017-11-01 13:19:39 +00:00
<img class="photo avatar u-photo u-avatar" src="{{ site.author.avatar }}" alt="Photo of {{ site.author.name }}" />
2018-03-21 15:43:35 +00:00
<a class="fn p-name url u-url u-uid" href="{{ site.author.url }}/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 %}
<dt>SIP</dt>
<dd>
<a rel="me" class="u-sip sip" href="sip:{{ site.author.sip }}">sip:{{ site.author.sip }}</a>
</dd>
{% endif %}
{% if site.author.gpg %}
<dt>GPG/PGP public key</dt>
<dd>
<a rel="me" class="u-gpg gpg" href="{{ site.url }}/{{ site.author.gpg }}">GPG key</a>
</dd>
{% endif %}
2018-03-21 15:43:35 +00:00
</dl>
<dl>
{% for silo, url in site.author.socials.items() %}
2018-03-21 15:43:35 +00:00
<dt>{{ silo }}</dt>
<dd>
<a rel="me" class="u-{{ silo }} url u-url" href="{{ url }}">{{ silo }}</a>
</dd>
{% endfor %}
</dl>
</nav>
</footer>
2017-05-23 11:21:10 +01:00
{% include 'symbols.svg' %}
2017-05-23 11:21:10 +01:00
</body>
2017-05-26 15:09:16 +01:00
</html>