2017-07-11 16:55:03 -07:00
|
|
|
<div id="asset-placeholder">
|
2017-08-01 18:58:13 -07:00
|
|
|
<a href="/{{fileInfo.claimId}}/{{fileInfo.name}}">
|
2017-07-08 15:17:40 -07:00
|
|
|
{{#ifConditional fileInfo.fileType '===' 'video/mp4'}}
|
2017-07-25 15:00:32 -07:00
|
|
|
<video class="show-asset-lite" autoplay loop controls>
|
2017-07-27 14:18:55 -07:00
|
|
|
<source src="/media/{{fileInfo.fileName}}">
|
2017-07-08 15:17:40 -07:00
|
|
|
{{!--fallback--}}
|
|
|
|
Your browser does not support the <code>video</code> element.
|
|
|
|
</video>
|
2017-07-17 13:20:57 -07:00
|
|
|
|
2017-07-08 15:17:40 -07:00
|
|
|
{{else}}
|
2017-07-27 14:18:55 -07:00
|
|
|
<img class="show-asset-lite" src="/media/{{fileInfo.fileName}}" alt="{{fileInfo.fileName}}"/>
|
2017-07-08 15:17:40 -07:00
|
|
|
{{/ifConditional}}
|
2017-07-17 13:59:21 -07:00
|
|
|
</a>
|
2017-07-08 15:17:40 -07:00
|
|
|
</div>
|