6 lines
314 B
HTML
6 lines
314 B
HTML
<audio controls style="width: 100%; margin-bottom: 20px; content-align: center;">
|
|
{{ with .Get "ogg" }}<source src="{{ . }}" type="audio/ogg">{{ end }}
|
|
{{ with .Get "mp3" }}<source src="{{ . }}" type="audio/mpeg">{{ end }}
|
|
{{ with .Get "wav" }}<source src="{{ . }}" type="audio/wav">{{ end }}
|
|
</audio>
|