1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-01 08:28:27 +00:00
friendica-github/view/templates/content/image/single.tpl
2023-10-08 10:28:17 -04:00

10 lines
428 B
Smarty

{{if $image->preview}}
<a data-fancybox="{{$image->uriId}}" href="{{$image->url}}"><img src="{{$image->preview}}" alt="{{$image->description}}" title="{{$image->description}}" loading="lazy"></a>
{{else}}
<figure>
<img src="{{$image->url}}" alt="{{$image->description}}" title="{{$image->description}}" loading="lazy">
{{if $image->description}}
<figcaption>{{$image->description}}</figcaption>
{{/if}}
</figure>
{{/if}}