Files
memex/gharbeia.net/themes/gohugo-amp/layouts/partials/amp/audio.html

14 lines
573 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<amp-audio
{{ with .width }}width="{{ . }}"{{ end }}
{{ with .height }}height="{{ . }}"{{ end }}
{{ with .src }}src="{{ . }}"{{ end }}
{{ with .layout }}layout="{{ . }}"{{ end }}
{{ with .autoplay }}autoplay{{ end }}
{{ with .loop }}loop{{ end }}
{{ with .muted }}muted{{ end }}>
<div fallback>
<p>Your browser doesnt support HTML5 audio</p>
</div>
{{ with .mp3 }}<source type="audio/mpeg" src="{{ . }}">{{ end }}
{{ with .ogg }}<source type="audio/ogg" src="{{ . }}">{{ end }}
</amp-audio>