erynwells.me/layouts/shortcodes/audio.html
2022-04-09 09:08:38 -07:00

5 lines
No EOL
198 B
HTML

{{ $id := .Get "id" }}
{{ $mp3 := (.Page.Resources.GetMatch (.Get "mp3")) }}
<audio {{ with $id }}id="{{ . }}"{{ end }}>
{{ with $mp3 }}<source src="{{ . }}" type="audio/mpeg">{{ end }}
</audio>