spee.ch/views/partials/asset.handlebars

19 lines
925 B
Handlebars
Raw Normal View History

2017-09-29 15:56:13 -07:00
{{#ifConditional fileInfo.fileType '===' 'video/mp4'}}
{{#ifConditional fileInfo.fileExt '===' 'gifv'}}
2017-10-10 10:14:43 -07:00
<video class="gifv-show" autoplay loop muted>
2017-10-17 14:15:02 -07:00
<source src="/{{fileInfo.claimId}}/{{fileInfo.name}}.{{fileInfo.fileExt}}">
2017-09-29 15:56:13 -07:00
{{!--fallback--}}
Your browser does not support the <code>video</code> element.
</video>
{{else}}
<video id="video-player" class="video-show" controls poster="{{fileInfo.thumbnail}}">
2017-10-17 14:15:02 -07:00
<source src="/{{fileInfo.claimId}}/{{fileInfo.name}}.{{fileInfo.fileExt}}">
2017-09-29 15:56:13 -07:00
{{!--fallback--}}
Your browser does not support the <code>video</code> element.
</video>
{{/ifConditional}}
{{else}}
<a href="/{{fileInfo.claimId}}/{{fileInfo.name}}.{{fileInfo.fileExt}}">
2017-10-17 14:15:02 -07:00
<img class="image-show" src="/{{fileInfo.claimId}}/{{fileInfo.name}}.{{fileInfo.fileExt}}" />
</a>
{{/ifConditional}}