2017-09-26 15:12:47 -07:00
|
|
|
<div class="row">
|
2017-07-11 16:55:03 -07:00
|
|
|
<div id="asset-placeholder">
|
2017-09-07 09:45:00 -07:00
|
|
|
<a href="/{{fileInfo.claimId}}/{{fileInfo.name}}.{{fileInfo.fileExt}}">
|
2017-07-08 15:17:40 -07:00
|
|
|
{{#ifConditional fileInfo.fileType '===' 'video/mp4'}}
|
2017-09-07 09:45:00 -07:00
|
|
|
{{#ifConditional fileInfo.fileExt '===' 'gifv'}}
|
2017-08-18 16:52:58 -07:00
|
|
|
<video class="show-asset" autoplay loop muted>
|
|
|
|
<source src="/media/{{fileInfo.fileName}}">
|
|
|
|
{{!--fallback--}}
|
|
|
|
Your browser does not support the <code>video</code> element.
|
|
|
|
</video>
|
|
|
|
{{else}}
|
|
|
|
<video class="show-asset" autoplay controls>
|
|
|
|
<source src="/media/{{fileInfo.fileName}}">
|
|
|
|
{{!--fallback--}}
|
|
|
|
Your browser does not support the <code>video</code> element.
|
|
|
|
</video>
|
|
|
|
{{/ifConditional}}
|
2017-07-08 15:17:40 -07:00
|
|
|
{{else}}
|
2017-07-27 14:18:55 -07:00
|
|
|
<img class="show-asset" src="/media/{{fileInfo.fileName}}" />
|
2017-07-08 15:17:40 -07:00
|
|
|
{{/ifConditional}}
|
2017-07-27 21:56:35 -07:00
|
|
|
</a>
|
2017-07-05 13:51:25 -07:00
|
|
|
</div>
|
2017-07-08 15:17:40 -07:00
|
|
|
</div>
|