piwigo/template/yoga/mainpage_categories.tpl
rvelices 35076ee1b9 - index.tpl, menubar.tpl, mainpage_categories.tpl and month_calendar.tpl go smarty
- 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
2008-03-01 13:12:07 +00:00

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>