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