Files
assilvestrar-blog/layouts/shortcodes/audio.html
2025-09-13 16:32:25 +02:00

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>