PortableInfobox/templates/PortableInfoboxItemImage.mustache

19 lines
804 B
Plaintext
Raw Normal View History

{{!
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}}" class="pi-image-thumbnail" alt="{{alt}}" width="{{{width}}}" height="{{{height}}}"
2015-12-22 12:06:50 +00:00
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>