mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-21 23:05:43 +01:00
Merge pull request #11 from yuriks/master
Merge the gifv shortcode into imgs, auto-detecting the file type
This commit is contained in:
commit
72ea06b00e
@ -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>
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user