19 lines
No EOL
799 B
Handlebars
19 lines
No EOL
799 B
Handlebars
<a href="/{{fileInfo.claimId}}/{{fileInfo.name}}.{{fileInfo.fileExt}}">
|
|
{{#ifConditional fileInfo.fileType '===' 'video/mp4'}}
|
|
{{#ifConditional fileInfo.fileExt '===' 'gifv'}}
|
|
<video class="gifv-show" autoplay loop muted>
|
|
<source src="/media/{{fileInfo.fileName}}">
|
|
{{!--fallback--}}
|
|
Your browser does not support the <code>video</code> element.
|
|
</video>
|
|
{{else}}
|
|
<video class="video-show" controls poster="{{fileInfo.thumbnail}}">
|
|
<source src="/media/{{fileInfo.fileName}}">
|
|
{{!--fallback--}}
|
|
Your browser does not support the <code>video</code> element.
|
|
</video>
|
|
{{/ifConditional}}
|
|
{{else}}
|
|
<img class="image-show" src="/media/{{fileInfo.fileName}}" />
|
|
{{/ifConditional}}
|
|
</a> |