Welcome to mirror list, hosted at ThFree Co, Russian Federation.

video.html « extra « partials « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c59d362994a85120c961a4577ffdb1af95ec881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>