- better template debugging tweak (the smarty console is shown only once at the end) git-svn-id: http://piwigo.org/svn/trunk@2231 68402e56-0260-453c-a942-63ccdbb3a9ee
27 lines
652 B
Go Template
27 lines
652 B
Go Template
{* $Id$ *}
|
|
|
|
<ul class="thumbnailCategories">
|
|
{foreach from=$category_thumbnails item=cat}
|
|
<li>
|
|
<div class="thumbnailCategory">
|
|
<div class="illustration">
|
|
<a href="{$cat.URL}">
|
|
<img src="{$cat.TN_SRC}" alt="{$cat.ALT}" title="{'hint_category'|@translate}">
|
|
</a>
|
|
</div>
|
|
<div class="description">
|
|
<h3>
|
|
<a href="{$cat.URL}">{$cat.NAME}</a>
|
|
{$cat.ICON}
|
|
</h3>
|
|
{if isset($cat.INFO_DATES) }
|
|
<p>{$cat.INFO_DATES}</p>
|
|
{/if}
|
|
<p>{$cat.CAPTION_NB_IMAGES}</p>
|
|
<p>{$cat.DESCRIPTION}</p>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
|