mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 08:12:11 +00:00
c26a6d6cc8
- Don't auto-minify HTML but minify other resources, inc. the RSS feed - Manually optimize whitespace a little to balance readability and compressed size
12 lines
434 B
HTML
12 lines
434 B
HTML
{{- $codeIndex := (.Page.Scratch.Get "codeIndex") -}}
|
|
{{- $id := (printf `code-%d` (sub $codeIndex 1)) -}}
|
|
{{- with .Get "id" -}}
|
|
{{- $id = . -}}
|
|
{{- end -}}
|
|
<!--
|
|
The full caption is too long for an aria-label;
|
|
just use the beginning for the label and the full thing for the aria description.
|
|
-->
|
|
<figure aria-labelledby="{{ $id }}" itemscope itemtype="https://schema.org/SoftwareSourceCode">
|
|
{{ .Inner | markdownify -}}
|
|
</figure>
|