2023-09-23 22:20:00 -04:00
|
|
|
{{* $image.widthRatio is only set in the context of Model\Item->makeImageGrid *}}
|
|
|
|
<figure class="img-allocated-height" style="width: {{if $image.widthRatio}}{{$image.widthRatio}}%{{else}}auto{{/if}}; padding-bottom: {{$allocated_height}}">
|
2021-04-28 15:05:46 -04:00
|
|
|
{{if $image.preview}}
|
2023-09-23 22:20:00 -04:00
|
|
|
<a data-fancybox="{{$image.uri_id}}" href="{{$image.attachment.url}}">
|
|
|
|
<img src="{{$image.preview}}" alt="{{$image.attachment.description}}" title="{{$image.attachment.description}}">
|
|
|
|
</a>
|
2021-04-28 15:05:46 -04:00
|
|
|
{{else}}
|
2023-09-23 22:20:00 -04:00
|
|
|
<img src="{{$image.src}}" alt="{{$image.attachment.description}}" title="{{$image.attachment.description}}">
|
2021-04-28 15:05:46 -04:00
|
|
|
{{/if}}
|
2023-09-23 22:20:00 -04:00
|
|
|
</figure>
|