source: trunk/template/yoga/mainpage_categories.tpl @ 3282

Last change on this file since 3282 was 3282, checked in by plg, 15 years ago

change: according to topic:15067, svn:keywords property was removed

  • Property svn:eol-style set to LF
File size: 996 bytes
Line 
1{* $Id: /piwigo/trunk/template/yoga/mainpage_categories.tpl 7029 2009-03-11T19:41:21.279480Z nikrou  $ *}
2
3<ul class="thumbnailCategories">
4{foreach from=$category_thumbnails item=cat}
5        <li>
6                <div class="thumbnailCategory">
7                        <div class="illustration">
8                        <a href="{$cat.URL}">
9                                <img src="{$cat.TN_SRC}" alt="{$cat.TN_ALT}" title="{$cat.NAME|@replace:'"':' '} - {'hint_category'|@translate}">
10                        </a>
11                        </div>
12                        <div class="description">
13                                <h3>
14                                        <a href="{$cat.URL}">{$cat.NAME}</a>
15                                        {if !empty($cat.icon_ts)}
16                                        <img title="{$cat.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent{if $cat.icon_ts.IS_CHILD_DATE}_by_child{/if}.png" class="icon" alt="(!)">
17                                        {/if}
18                                </h3>
19                <div class="text">
20                                {if isset($cat.INFO_DATES) }
21                                <p class="dates">{$cat.INFO_DATES}</p>
22                                {/if}
23                                <p class="Nb_images">{$cat.CAPTION_NB_IMAGES}</p>
24                                {if not empty($cat.DESCRIPTION)}
25                                <p>{$cat.DESCRIPTION}</p>
26                                {/if}
27                </div>
28                        </div>
29                </div>
30        </li>
31{/foreach}
32</ul>
Note: See TracBrowser for help on using the repository browser.