Files
ffs/layouts/shortcodes/audio.html
T

10 lines
302 B
HTML
Executable File

<figure>
<audio controls preload="metadata" style="width: 100%;">
<source src="{{ .Get "src" | relURL }}" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
{{ with .Get "caption" }}
<figcaption>{{ . }}</figcaption>
{{ end }}
</figure>