2008-03-01 14:24:04 +00:00
|
|
|
|
|
|
|
{if !empty($thumbnails)}
|
2006-06-24 08:56:59 +00:00
|
|
|
<ul class="thumbnails">
|
2008-03-01 14:24:04 +00:00
|
|
|
{foreach from=$thumbnails item=thumbnail}
|
2008-03-11 02:04:27 +00:00
|
|
|
<li>
|
2008-03-01 14:24:04 +00:00
|
|
|
<span class="wrap1">
|
|
|
|
<span class="wrap2">
|
2008-09-10 01:16:13 +00:00
|
|
|
<a href="{$thumbnail.URL}">
|
2009-03-09 19:41:45 +00:00
|
|
|
<img class="thumbnail" src="{$thumbnail.TN_SRC}" alt="{$thumbnail.TN_ALT}" title="{$thumbnail.TN_TITLE}">
|
2008-03-01 14:24:04 +00:00
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
<span class="thumbLegend">
|
2008-11-06 01:19:55 +00:00
|
|
|
{if isset($thumbnail.NAME)}{$thumbnail.NAME}{/if}
|
2009-03-11 17:25:26 +00:00
|
|
|
{if !empty($thumbnail.icon_ts)}
|
2009-03-11 19:41:21 +00:00
|
|
|
<img title="{$thumbnail.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent.png" class="icon" alt="(!)">
|
2009-03-11 17:25:26 +00:00
|
|
|
{/if}
|
2008-03-11 02:04:27 +00:00
|
|
|
{if isset($thumbnail.NB_COMMENTS)}
|
|
|
|
<span class="{if 0==$thumbnail.NB_COMMENTS}zero {/if}nb-comments">
|
2009-03-09 19:41:45 +00:00
|
|
|
<br>
|
2008-03-11 02:04:27 +00:00
|
|
|
{$pwg->l10n_dec('%d comment', '%d comments',$thumbnail.NB_COMMENTS)}
|
2008-03-01 14:24:04 +00:00
|
|
|
</span>
|
|
|
|
{/if}
|
2008-03-11 02:04:27 +00:00
|
|
|
|
|
|
|
{if isset($thumbnail.NB_HITS)}
|
|
|
|
<span class="{if 0==$thumbnail.NB_HITS}zero {/if}nb-hits">
|
2009-03-09 19:41:45 +00:00
|
|
|
<br>
|
2008-03-11 02:04:27 +00:00
|
|
|
{$pwg->l10n_dec('%d hit', '%d hits',$thumbnail.NB_HITS)}
|
2008-03-01 14:24:04 +00:00
|
|
|
</span>
|
|
|
|
{/if}
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
{/foreach}
|
2006-06-24 08:56:59 +00:00
|
|
|
</ul>
|
2008-03-01 14:24:04 +00:00
|
|
|
{/if}
|
|
|
|
|
|
|
|
|