hugo-tufte/layouts/shortcodes/sidenote.html

12 lines
558 B
HTML
Raw Permalink Normal View History

{{- with $.Page.Scratch.Get "sidenoteCounter" -}}
{{- $.Page.Scratch.Set "sidenoteCounter" (add . 1) -}}
{{- else -}}
{{- $.Page.Scratch.Set "sidenoteCounter" 1 -}}
{{- end -}}
2023-04-18 01:29:12 +02:00
{{- $label := $.Page.Scratch.Get "sidenoteCounter" -}}
<label for="sidenote-{{ $label }}" class="margin-toggle sidenote-number">({{ $label }})</label>
<input type="checkbox" id="sidenote-{{ $label }}" class="margin-toggle"/>
2023-04-29 06:17:50 +02:00
<span class="sidenote"{{ with .Get "lang" }} lang="{{ . }}"{{ end }}>
2023-04-18 01:29:12 +02:00
<span class="sidenote-number">({{ $label }})</span>{{ .Inner | markdownify }}
</span>