vugo/layouts/shortcodes/audio.html
2022-08-10 15:27:44 +02:00

14 lines
344 B
HTML

<!--
class: class of the figure
link: url the image directs to
alt: alternative text
caption: caption
mouse: what the image says when moused over ("title" in HTML)
-->
<audio controls="true">
<source src="{{.Get "src" }}" type="audio/{{.Get "audio" }}">
Sorry mate, your browser doesn't support playing audio files.
</source>
</audio>