mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-13 01:02:10 +00:00
f798de7e63
- Stop using draft WAI-ARIA 1.3 that isn't supported yet - Make in-page links focusable across shortcodes/partials - Replace existing in-page heading anchor links with a more accessible option. - Make backlinks aria-labelledby instead of giving them an aria-label, so they can be translated.
12 lines
410 B
HTML
12 lines
410 B
HTML
<article class="h-entry hentry"><!--Once WAI-ARIA 1.3 gains traction, I'll add aria-details for webmentions.-->
|
|
<header>
|
|
<h1 itemprop="name headline" class="p-name entry-title">{{ .Title }}</h1>
|
|
{{- if not .Params.disableMeta }}
|
|
{{ partial "post-meta.html" . }}
|
|
{{- end }}
|
|
<hr>
|
|
</header>
|
|
<div class="e-content entry-content" itemprop="articleBody">
|
|
{{ partial "processed-content" . -}}
|
|
</div>
|
|
</article>
|