mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-13 01:02:10 +00:00
1a7cc7156c
IBM Equal Access A11y Checker caught an <aside> without a label. Figured this was a good opportunity to instead use the site description. While I was at it, I expanded said site description and used it properly.
12 lines
311 B
HTML
12 lines
311 B
HTML
{{ define "main" -}}
|
||
<main id="main" tabindex="-1">
|
||
<h1 id="seirdys-home">Seirdy’s Home</h1>
|
||
<p itemprop="description">{{ .Site.Params.Description }}</p>
|
||
<hr />
|
||
<div class="narrow">
|
||
{{ partial "processed-content.html" . }}
|
||
{{ partial "posts.html" . }}
|
||
{{ partial "webrings.html" . }}
|
||
</div>
|
||
</main>
|
||
{{ end }}
|