3e9d3ab686
jquery.mobile updated photoswipe updated menubar is now a right panel, with almost all the usual links added comment, search, picture, about and tags pages ToDo: *bug correction of the link added to the photoswipe toolbar (link doesn't triggered) *display the calculated size on the picture page limitations: no calendar view git-svn-id: http://piwigo.org/svn/trunk@23713 68402e56-0260-453c-a942-63ccdbb3a9ee
24 lines
1.2 KiB
Smarty
24 lines
1.2 KiB
Smarty
{if !empty($thumbnails)}
|
|
{combine_script id='klass' path='themes/smartpocket/js/klass.min.js'}
|
|
{combine_script id='photoswipe' path='themes/smartpocket/js/code.photoswipe.jquery.min.js' require='klass,jquery.mobile'}
|
|
{combine_script id='smartpocket' path='themes/smartpocket/js/smartpocket.js' require='photoswipe'}
|
|
{combine_script id='jquery.ajaxmanager' path='themes/default/js/plugins/jquery.ajaxmanager.js' load='footer'}
|
|
{combine_script id='thumbnails.loader' path='themes/default/js/thumbnails.loader.js' require='jquery.ajaxmanager' load='footer'}
|
|
|
|
<ul class="thumbnails">
|
|
{foreach from=$thumbnails item=thumbnail}{strip}
|
|
{assign var=derivative value=$pwg->derivative($thumbnail_derivative_params, $thumbnail.src_image)}
|
|
{if isset($page_selection[$thumbnail.id])}
|
|
<li>
|
|
<a href="{$pwg->derivative_url($picture_derivative_params, $thumbnail.src_image)}" data-picture-url="{$thumbnail.URL}" rel="external">
|
|
<img {if !$derivative->is_cached()}data-{/if}src="{$derivative->get_url()}" alt="{$thumbnail.TN_ALT}">
|
|
</a>
|
|
</li>
|
|
{else}
|
|
<li style="display:none;">
|
|
<a href="{$pwg->derivative_url($picture_derivative_params, $thumbnail.src_image)}" rel="external"></a>
|
|
</li>
|
|
{/if}
|
|
{/strip}{/foreach}
|
|
</ul>
|
|
{/if}
|