source: trunk/template-extension/distributed/samples/my-thumbnails2.tpl @ 3283

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

complement to r3282, remove all $Id$ in source code.

  • Property svn:eol-style set to LF
File size: 613 bytes
Line 
1<!-- This is a sample of template extensions -->
2{if !empty($thumbnails)}
3{html_head}<link rel="stylesheet" type="text/css" href="./template-extension/distributed/samples/my-thumbnails2.css">{/html_head}
4<ul class="thumbnails">
5{foreach from=$thumbnails item=thumbnail}
6        <li>
7        <fieldset class="fld1">
8                <legend class="thumbLegend">
9                {if !empty($thumbnail.NAME)}{$thumbnail.NAME}{/if}
10                </legend>
11                <a href="{$thumbnail.URL}" class="lap2">
12                        <span><img class="thumbnail" src="{$thumbnail.TN_SRC}" alt="{$thumbnail.TN_ALT}" title="{$thumbnail.TN_TITLE}"></span>
13                </a>
14  </fieldset>
15        </li>
16{/foreach}
17</ul>
18{/if}
Note: See TracBrowser for help on using the repository browser.