erynwells.me/layouts/shortcodes/audio.html

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>