From 830b2edc3587747f37281a0bd1eaf4dfe98b043a Mon Sep 17 00:00:00 2001 From: Andreas Neustifter <andreas.neustifter@gmail.com> Date: Wed, 25 Jul 2018 22:21:43 +0200 Subject: [PATCH] [frio] Remove frame around recent photos. (#5496) (#5499) Also layout file properly. --- view/theme/frio/templates/photo_album.tpl | 73 +++++++++++------------ 1 file changed, 35 insertions(+), 38 deletions(-) diff --git a/view/theme/frio/templates/photo_album.tpl b/view/theme/frio/templates/photo_album.tpl index 7540afbeaf..d590681826 100644 --- a/view/theme/frio/templates/photo_album.tpl +++ b/view/theme/frio/templates/photo_album.tpl @@ -1,41 +1,38 @@ -<div class="generic-page-wrapper"> - - <div class="pull-left"> - <h3 id="photo-album-title">{{$album}}</h3> - </div> - - <div class="photo-album-actions pull-right"> - {{if $can_post}} - <a class="photos-upload-link" href="{{$upload.1}}" title="{{$upload.0}}" data-toggle="tooltip"> - <i class="faded-icon fa fa-plus"></i></a> - {{/if}} - {{if $edit}} - <span class="icon-padding"> </span> - <a id="album-edit-link" href="{{$edit.1}}" title="{{$edit.0}}" data-toggle="tooltip"> - <i class="faded-icon fa fa-pencil"></i></a> - {{/if}} - {{if ! $noorder}} - <span class="icon-padding"> </span> - <a class="photos-order-link" href="{{$order.1}}" title="{{$order.0}}" data-toggle="tooltip"> - {{if $order.2 == "newest"}} - <i class="faded-icon fa fa-sort-numeric-desc"></i> - {{else}} - <i class="faded-icon fa fa-sort-numeric-asc"></i> - {{/if}} - </a> - {{/if}} - </div> - <div class="clear"></div> - - <div class="photo-album-wrapper" id="photo-album-contents"> - {{foreach $photos as $photo}} - {{include file="photo_top.tpl"}} - {{/foreach}} - </div> - - <div class="photo-album-end"></div> - - {{$paginate}} +<div class="pull-left"> +<h3 id="photo-album-title">{{$album}}</h3> </div> +<div class="photo-album-actions pull-right"> + {{if $can_post}} + <a class="photos-upload-link" href="{{$upload.1}}" title="{{$upload.0}}" data-toggle="tooltip"> + <i class="faded-icon fa fa-plus"></i></a> + {{/if}} + {{if $edit}} + <span class="icon-padding"> </span> + <a id="album-edit-link" href="{{$edit.1}}" title="{{$edit.0}}" data-toggle="tooltip"> + <i class="faded-icon fa fa-pencil"></i></a> + {{/if}} + {{if ! $noorder}} + <span class="icon-padding"> </span> + <a class="photos-order-link" href="{{$order.1}}" title="{{$order.0}}" data-toggle="tooltip"> + {{if $order.2 == "newest"}} + <i class="faded-icon fa fa-sort-numeric-desc"></i> + {{else}} + <i class="faded-icon fa fa-sort-numeric-asc"></i> + {{/if}} + </a> + {{/if}} +</div> +<div class="clear"></div> + +<div class="photo-album-wrapper" id="photo-album-contents"> +{{foreach $photos as $photo}} + {{include file="photo_top.tpl"}} +{{/foreach}} +</div> + +<div class="photo-album-end"></div> + +{{$paginate}} + <script type="text/javascript">$(document).ready(function() { loadingPage = false; justifyPhotos(); });</script>