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

Last change on this file since 2540 was 2515, checked in by rvelices, 16 years ago
  • fix undefined template vars U_LOST_PASSWORD (menubar), F_ACTION (extend_for_templates) and F_C13Y_ACTION (check_integrity)
  • normalized some template variable names between category thumbnails and thumbnails (take advantage of full template change with smarty and do it now)
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 629 bytes
Line 
1{* $Id: mainpage_categories.tpl 2515 2008-09-10 01:16:13Z rvelices $ *}
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="{'hint_category'|@translate}">
10                        </a>
11                        </div>
12                        <div class="description">
13                                <h3>
14                                        <a href="{$cat.URL}">{$cat.NAME}</a>
15                                        {$cat.ICON_TS}
16                                </h3>
17                                {if isset($cat.INFO_DATES) }
18                                <p>{$cat.INFO_DATES}</p>
19                                {/if}
20                                <p>{$cat.CAPTION_NB_IMAGES}</p>
21                                {if not empty($cat.DESCRIPTION)}
22                                <p>{$cat.DESCRIPTION}</p>
23                                {/if}
24                        </div>
25                </div>
26        </li>
27{/foreach}
28</ul>
29
Note: See TracBrowser for help on using the repository browser.