Merge the gifv shortcode into imgs, auto-detecting the file type

This commit is contained in:
Yuri Kunde Schlesner 2018-07-14 22:59:40 -07:00
parent f43500bf0f
commit 02ded1c5a9
2 changed files with 13 additions and 23 deletions

View File

@ -1,19 +0,0 @@
<!-- Usage: gifv "url|title" "url2|title" -->
<div class="columns">
{{ range $param := .Params }}
<!-- gifv -->
{{ $items := split $param "|" }}
{{ $src := (index $items 0) }}
{{ $title := (index $items 1) }}
<div class="column">
<video preload="auto" autoplay="autoplay" muted="muted" loop="loop" webkit-playsinline="">
<source src="{{ $src }}" type="video/mp4">
Your browser doesn't support mp4 video. :(
</video>
{{ if $title }}
<p class="has-text-centered is-italic has-text-grey-light">{{ $title }}</p>
{{ end }}
</div>
{{ end }}
</div>

View File

@ -4,13 +4,22 @@
{{ $items := split $param "|" }}
{{ $src := (index $items 0) }}
{{ $title := (index $items 1) }}
{{ $split_src := split $src "." }}
{{ $extension := index $split_src (sub (len $split_src) 1) }}
<div class="column">
<a href="{{ $src }}" title="{{ $title }}">
<img src="{{ $src }}" alt="{{ $title }}">
</a>
{{ if eq $extension "mp4" }}
<video preload="auto" autoplay="autoplay" muted="muted" loop="loop" webkit-playsinline="">
<source src="{{ $src }}" type="video/mp4">
Your browser doesn't support mp4 video. :(
</video>
{{ else }}
<a href="{{ $src }}" title="{{ $title }}">
<img src="{{ $src }}" alt="{{ $title }}">
</a>
{{ end }}
{{ if $title }}
<p class="has-text-centered is-italic has-text-grey-light">{{ $title }}</p>
{{ end }}
</div>
{{ end }}
</div>
</div>