all repos — nasg @ e9899b3e3301c038e51a7494594640c4eface810

block_footer.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
<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>