aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/audio.html
blob: d64d850ccd991fcbf6aca1a7381fe8b77a8b8cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<audio controls>
	{{ if .IsNamedParams }}
		{{ if isset .Params "src" }}
			{{ if isset .Params "type" }}
				<source src="{{ .Get "src" }}" type="audio/{{ .Get "type" }}">
			{{ else }}
				{{ errorf "Missing type parameter: %s" .Position }}
			{{ end }}
		{{ else }}
			{{ errorf "Missing src parameter: %s" .Position }}
		{{ end }}
	{{ else }}
		{{ errorf "Missing parameter names: %s" .Position }}
	{{ end }}
Browser does not support embedded audio.
</audio>