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

Last change on this file since 2550 was 2550, checked in by vdigital, 16 years ago

Index page: Scrolling start above the category when description is too long.
Sql Trace in a <div> clear:both.
French de-à => du-au

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 716 bytes
Line 
1{* $Id: mainpage_categories.tpl 2550 2008-09-19 19:38:15Z vdigital $ *}
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        <div class="text">
18                                {if isset($cat.INFO_DATES) }
19                                <p class="dates">{$cat.INFO_DATES}</p>
20                                {/if}
21                                <p class="Nb_images">{$cat.CAPTION_NB_IMAGES}</p>
22                                {if not empty($cat.DESCRIPTION)}
23                                <p>{$cat.DESCRIPTION}</p>
24                                {/if}
25        </div>
26                        </div>
27                </div>
28        </li>
29{/foreach}
30</ul>
Note: See TracBrowser for help on using the repository browser.