friendica-github/view/templates/content/image.tpl

6 lines
365 B
Smarty
Raw Normal View History

{{if $image.preview}}
2023-10-02 16:23:02 +00:00
<a data-fancybox="{{$image.uri_id}}" href="{{$image.attachment.url}}"><img src="{{$image.preview}}" alt="{{$image.attachment.description}}" title="{{$image.attachment.description}}" loading="lazy"></a>
{{else}}
2023-10-02 16:23:02 +00:00
<img src="{{$image.src}}" alt="{{$image.attachment.description}}" title="{{$image.attachment.description}}" loading="lazy">
{{/if}}