a506d9d18f
- changed layout for journal/articles: single page, per year grouping - adaptimg wide view
43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
|
|
<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>
|
|
<img class="photo avatar u-photo u-avatar" src="{{ site.author.avatar }}" alt="Photo of {{ site.author.name }}" />
|
|
<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>
|
|
{% 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 %}
|
|
</dl>
|
|
<dl>
|
|
{% for silo, url in site.author.socials.items() %}
|
|
|
|
<dt>{{ silo }}</dt>
|
|
<dd>
|
|
<a rel="me" class="u-{{ silo }} url u-url" href="{{ url }}">{{ silo }}</a>
|
|
</dd>
|
|
{% endfor %}
|
|
</dl>
|
|
</nav>
|
|
</footer>
|
|
|
|
{% include 'symbols.svg' %}
|
|
|
|
</body>
|
|
</html>
|