source: extensions/stripped_black_bloc/template/stuffs_thumbnails.tpl @ 17740

Last change on this file since 17740 was 17740, checked in by flop25, 12 years ago

$confshow_thumbnail_caption = false Compatible

File size: 1.3 KB
RevLine 
[13211]1{assign var='thumbnails' value=$block.thumbnails}
[14166]2{combine_script id='jquery.ajaxmanager' path='themes/default/js/plugins/jquery.ajaxmanager.js' load='footer'}
3{combine_script id='ajaxloader' path='themes/stripped_black_bloc/js/ajaxloader.js' require='jquery.ajaxmanager' load='footer'}
4{define_derivative name='derivative_stripped_black_bloc' width=$stripped_black_bloc.thumbnail_width height=9999 crop=false}
[13211]5{if !empty($thumbnails)}
6  {foreach from=$thumbnails item=thumbnail}
[14166]7    {assign var=derivative value=$pwg->derivative($derivative_stripped_black_bloc, $thumbnail.src_image)}
8    {assign var='size' value=$derivative->get_size()}
[17740]9<div class="{$thumbnail.TN_CLASS}">
10  <a href="{$thumbnail.URL}" style="background: url({if $derivative->is_cached()}{$derivative->get_url()}{else}{$ROOT_URL}{$themeconf.img_dir}/loading.gif{/if}) no-repeat scroll center center transparent; height: {$size[1]}px; width: {$size[0]}px; opacity: 0.75;" {if !$derivative->is_cached()}data-src="{$derivative->get_url()}"{/if}>
[14166]11    {if isset($thumbnail.NAME)}{$thumbnail.NAME}{else}{$thumbnail.TN_TITLE}{/if}
[17740]12  </a>
13  {if $SHOW_THUMBNAIL_CAPTION }
14  <div class="title">{if isset($block.TITLE)}{$block.TITLE}{elseif isset($thumbnail.NAME)}{$thumbnail.NAME}{/if}</div>
15  {/if}
16</div>
[13211]17  {/foreach}
18{/if}
Note: See TracBrowser for help on using the repository browser.