17 lines
No EOL
507 B
HTML
17 lines
No EOL
507 B
HTML
{{ $caption := .Get "caption" -}}
|
|
{{ $preload := .Get "preload" | default "none" -}}
|
|
{{ $src := .Get "src" -}}
|
|
{{ $type := .Get "type" -}}
|
|
|
|
<figure class="media">
|
|
<audio controls preload="{{ $preload }}">
|
|
<source src="{{ $src }}" {{ with $type }}type="{{ . }}"{{ end }}>
|
|
It seems like your browser does not support the audio format.
|
|
</audio>
|
|
{{ with $caption -}}
|
|
<figcaption>{{ . | markdownify }}</figcaption>
|
|
{{ end }}
|
|
{{ with $src -}}
|
|
<a href="{{ . }}">Source link</a>
|
|
{{ end -}}
|
|
</figure> |