mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 11:59:56 +00:00
19 lines
850 B
Plaintext
19 lines
850 B
Plaintext
{{!
|
|
This template is linked with of mercury/front/templates/main/components/infobox-builder-item-image.hbs
|
|
Changing this template requires modifying the other in mercury repo.
|
|
}}
|
|
<figure class="pi-item pi-image">
|
|
<a href="{{url}}" class="image image-thumbnail{{#isVideo}} video video-thumbnail small{{/isVideo}}"
|
|
title="{{alt}}">
|
|
<img src="{{thumbnail}}" srcset="{{thumbnail}} 1x, {{thumbnail2x}} 2x" class="pi-image-thumbnail" alt="{{alt}}" width="{{{width}}}" height="{{{height}}}"
|
|
data-{{media-type}}-key="{{key}}" data-{{media-type}}-name="{{name}}"/>
|
|
{{#isVideo}}
|
|
{{#duration}}
|
|
<span class="duration" itemprop="duration">{{duration}}</span>
|
|
{{/duration}}
|
|
<span class="play-circle"></span>
|
|
{{/isVideo}}
|
|
</a>
|
|
{{#caption}}<figcaption class="pi-item-spacing pi-caption">{{{caption}}}</figcaption>{{/caption}}
|
|
</figure>
|