streams/view/tpl/file_top.tpl

17 lines
714 B
Smarty
Raw Normal View History

2023-04-03 10:22:16 +00:00
<div style="width:8rem;height:10rem;margin:5px;float:left;padding:5px;overflow:hidden;">
<a href="{{$photo.link}}" id="photo-top-photo-link-{{$photo.id}}" title="{{$photo.title}}">
{{if $photo.src}}
2023-04-03 10:22:16 +00:00
<img style="width:8rem;max-width:8rem;max-height:8rem;" src="{{$photo.src}}" alt="{{if $photo.album.name}}{{$photo.album.name}}{{elseif $photo.desc}}{{$photo.desc}}{{elseif $photo.alt}}{{$photo.alt}}{{else}}{{$photo.unknown}}{{/if}}" title="{{$photo.title}}" id="photo-top-photo-{{$photo.id}}" />
{{else}}
2023-04-03 10:22:16 +00:00
<div style="width:8rem;height:8rem;text-align:center;">
<i class="fa fa-fw {{$photo.icon}}" style="font-size:5rem;margin-top:2rem;"></i>
2023-04-03 09:16:01 +00:00
</div>
{{/if}}
2023-04-03 09:56:34 +00:00
<div>
{{$photo.filename}}
</div>
</a>
2023-04-03 09:56:34 +00:00
</div>