12 lines
563 B
HTML
12 lines
563 B
HTML
{{- $src := .Get "src" | default (.Get 0) -}} {{- $title := .Get "title" |
|
|
default (.Get 1) | default "Shared audio file" }}
|
|
<audio controls>
|
|
<source src="{{ .Page.Permalink }}{{ $src }}.ogg" type="audio/ogg" />
|
|
<source src="{{ .Page.Permalink }}{{ $src }}.mp3" type="audio/mpeg" />
|
|
Your browser does not support the audio tag.<br />
|
|
We had the following sources:
|
|
<a href="{{ .Page.Permalink }}{{ $src }}.ogg">ogg</a>,
|
|
<a href="{{ .Page.Permalink }}{{ $src }}.mp3">mp3</a>,
|
|
</audio>
|
|
|
|
<figcaption class="-mt-6 mb-6 text-left">{{ $title }}</figcaption>
|