mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
17 lines
603 B
HTML
17 lines
603 B
HTML
{{- $codeIndex := (.Page.Scratch.Get "codeIndex") -}}
|
|
{{- $id := (printf `code-%d` $codeIndex) -}}
|
|
{{- with .Get "id" -}}
|
|
{{- $id = . -}}
|
|
{{- end -}}
|
|
{{ with .Parent }}
|
|
{{- with .Get "id" -}}
|
|
{{- $id = . -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
<figcaption id="{{ $id }}-caption">
|
|
<span id="{{ $id }}">
|
|
<strong itemprop="name"> <span itemprop="codeSampleType">Code snippet</span> {{ $codeIndex }}</strong>{{with .Get "lang"}} (<span itemprop="programmingLanguage">{{ . }}</span>){{ end -}}
|
|
</span>:
|
|
{{ .Inner | markdownify | safeHTML }}
|
|
</figcaption>
|
|
{{- .Page.Scratch.Set "codeIndex" (add 1 $codeIndex) -}}
|