spee.ch/views/showLite.handlebars

21 lines
1,022 B
Handlebars
Raw Normal View History

{{#ifConditional fileInfo.fileType '===' 'video/mp4'}}
{{#ifConditional fileInfo.fileExt '===' '.gifv'}}
2017-11-09 00:36:00 +01:00
<video class="showlite-asset" autoplay loop muted>
2017-10-17 23:15:02 +02:00
<source src="/{{fileInfo.claimId}}/{{fileInfo.name}}.{{fileInfo.fileExt}}">
{{!--fallback--}}
Your browser does not support the <code>video</code> element.
</video>
{{else}}
2017-11-09 00:36:00 +01:00
<video class="showlite-asset" controls id="video-player">
2017-10-17 23:15:02 +02:00
<source src="/{{fileInfo.claimId}}/{{fileInfo.name}}.{{fileInfo.fileExt}}">
{{!--fallback--}}
Your browser does not support the <code>video</code> element.
</video>
{{/ifConditional}}
<br/>
2017-10-26 18:50:45 +02:00
<a class="link--primary fine-print" href="/{{fileInfo.claimId}}/{{fileInfo.name}}">hosted via spee&lt;h</a>
{{else}}
<a href="/{{fileInfo.claimId}}/{{fileInfo.name}}">
2017-11-09 00:36:00 +01:00
<img class="showlite-asset" src="/{{fileInfo.claimId}}/{{fileInfo.name}}.{{fileInfo.fileExt}}" alt="{{fileInfo.fileName}}"/>
</a>
{{/ifConditional}}