Update the grid-side theme

This commit is contained in:
2019-03-30 23:28:05 +00:00
parent 5255e9afd8
commit bc53f31743
281 changed files with 14134 additions and 54 deletions

View File

@@ -0,0 +1,19 @@
{{ $baseUrl := .Site.BaseURL }}
<video preload="auto" autoplay loop muted {{ with .Params.video_fallback }}poster="{{ $baseUrl }}{{ . }}"{{ end }} class="{{ .Scratch.Get "class" }}">
{{ with .Params.video_webm }}
<source src="{{ $baseUrl }}{{ . }}" type='video/webm; codecs="vp8.0, vorbis"'>
{{ end }}
{{ with .Params.video_ogv }}
<source src="{{ $baseUrl }}{{ . }}" type='video/ogg; codecs="theora, vorbis"'>
{{ end }}
{{ with .Params.video_mp4 }}
<source src="{{ $baseUrl }}{{ . }}" type='video/mp4; codecs="avc1.4D401E, mp4a.40.2"'>
{{ end }}
{{ with .Params.video_3gp }}
<source src="{{ $baseUrl }}{{ . }}" type='video/3gp'>
{{ end }}
{{ with .Params.video_fallback }}
<img src="{{ $baseUrl }}{{ . }}">
{{ end }}
</video>