2014-12-25 15:20:55 +00:00
|
|
|
<h3 id="photo-album-title">{{$album}}</h3>
|
2014-09-05 22:14:25 +00:00
|
|
|
|
2014-12-25 15:20:55 +00:00
|
|
|
{{if $edit}}
|
|
|
|
<div id="album-edit-link"><a href="{{$edit.1}}" title="{{$edit.0}}">{{$edit.0}}</a></div>
|
2019-05-01 23:36:14 +00:00
|
|
|
{{/if}}
|
|
|
|
{{if $drop}}
|
|
|
|
<div id="album-drop-link"><a href="{{$drop.1}}" title="{{$drop.0}}">{{$drop.0}}</a></div>
|
|
|
|
{{/if}}
|
2021-05-19 21:47:15 +00:00
|
|
|
<div class="photos-upload-link"><a href="{{$order.1}}" title="{{$order.0}}">{{$order.0}}</a></div>
|
2014-12-25 15:20:55 +00:00
|
|
|
{{if $can_post}}
|
2021-05-19 21:47:15 +00:00
|
|
|
<div class="photos-upload-link"><a href="{{$upload.1}}">{{$upload.0}}</a></div>
|
2014-12-25 15:20:55 +00:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{foreach $photos as $photo}}
|
2017-01-30 14:00:26 +00:00
|
|
|
<div class="photo-album-image-wrapper" id="photo-album-image-wrapper-{{$photo.id}}">
|
2018-12-14 03:28:12 +00:00
|
|
|
<a href="{{$photo.link}}" class="photo-album-photo-link" id="photo-album-photo-link-{{$photo.id}}" title="{{$photo.title}}">
|
|
|
|
<img 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}}" class="photo-album-photo lframe resize{{$photo.twist}}" id="photo-album-photo-{{$photo.id}}" />
|
2021-05-19 22:05:56 +00:00
|
|
|
<p class="caption" dir="auto">{{$photo.desc}}</p>
|
2013-04-23 11:47:57 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="photo-album-image-wrapper-end"></div>
|
2014-12-25 15:31:52 +00:00
|
|
|
{{/foreach}}
|
2016-08-04 19:53:22 +00:00
|
|
|
|
2018-12-14 03:35:51 +00:00
|
|
|
{{$paginate nofilter}}
|