mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 08:12:11 +00:00
f10de9f2e2
- Make footer links a list element - Make header aria-label less redundant - Give footer links a label
24 lines
1,014 B
HTML
24 lines
1,014 B
HTML
<footer id="site-footer">
|
|
<p>
|
|
Copyright<span aria-hidden="true"> ©</span> <span itemprop="copyrightYear">{{now.Year}}</span> <span itemprop="copyrightHolder">{{- partial "indieweb-author.html" -}}</span>
|
|
</p>
|
|
<nav aria-label="site info">
|
|
<ul class="unstyled-list">
|
|
<li itemprop="license" itemscope itemtype="https://schema.org/CreativeWork">
|
|
<a rel="license" itemprop="url" href="https://creativecommons.org/licenses/by-sa/4.0/"><span itemprop="name">CC BY-SA 4.0 license</span></a>
|
|
</li>
|
|
<li itemscope itemtype="https://schema.org/SoftwareSourceCode">
|
|
<a itemprop="codeRepository" rel="source" href="{{ .Site.Params.src }}">Source code</a>
|
|
</li>
|
|
<li>
|
|
<a rel="alternate" href="http://wgq3bd2kqoybhstp77i3wrzbfnsyd27wt34psaja4grqiezqircorkyd.onion{{ .RelPermalink }}">Tor</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ site.BaseURL }}privacy.html">Privacy</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ site.BaseURL }}about.html#location-seirdy-online">Contact</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</footer>
|