mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-23 21:02:09 +00:00
809fed4308
Bit the bullet and decided to make anchors that look great to terminal/textual browsers, ARIA + screen reader combos, and a regular browser.
11 lines
493 B
HTML
11 lines
493 B
HTML
{{- if and (eq .Level 2) (eq .Page.Section "posts") }}
|
|
<h{{ .Level }} id="{{ .Anchor | safeURL }}-hd">{{ .Text | safeHTML -}}</h{{ .Level }}>
|
|
<a
|
|
id="{{ .Anchor | safeURL }}" href="#{{ .Anchor | safeURL }}"
|
|
aria-labelledby="{{ .Anchor | safeURL }}-prefix {{ .Anchor | safeURL }}-hd">
|
|
<span id="{{ .Anchor | safeURL }}-prefix">Permalink to section</span>
|
|
</a>
|
|
{{- else }}
|
|
{{- with . -}}
|
|
<h{{ .Level }} id="{{ .Anchor | safeURL }}">{{ .Text | safeHTML -}}</h{{ .Level }}>{{ end -}}
|
|
{{- end }}
|