shared-bulma-theme/layouts/shortcodes/audio.html

20 lines
750 B
HTML
Raw Normal View History

2021-07-13 11:06:17 +02:00
{{ $src := .Get 0 }}
{{ $split_src := split $src "." }}
{{ $extension := index $split_src (sub (len $split_src) 1) }}
<audio preload="auto" controls>
{{ if eq $extension "ogg" }}
<source src="{{ $src }}" type="audio/ogg">
Your browser doesn't support Ogg Vorbis audio. :(
<a href="{{ $src }}">Download the audio instead</a>
{{ else if eq $extension "mp3" }}
<source src="{{ $src }}" type="audio/mpeg">
<a href="{{ $src }}">Download the audio instead</a>
{{ else if eq $extension "wav" }}
<source src="{{ $src }}" type="audio/wav">
<a href="{{ $src }}">Download the audio instead</a>
{{ else }}
<a href="{{ $src }}">Download the audio instead</a>
{{ end }}
</audio>