Created audio.html shortcode for embeded audio in blog posts
This commit is contained in:
6
layouts/shortcodes/audio.html
Normal file
6
layouts/shortcodes/audio.html
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<figure {{ with .Get "class" }}class="{{ . }}"{{ end }}>
|
||||||
|
<audio controls preload="{{ .Get "preload" | default "metadata" }}">
|
||||||
|
{{ with .Get "src" }}<source src="{{ . | relURL }}" type="audio/mpeg">{{ end }}
|
||||||
|
</audio>
|
||||||
|
{{ with .Get "caption" }}<figcaption>{{ . }}</figcaption>{{ end }}
|
||||||
|
</figure>
|
||||||
Reference in New Issue
Block a user