source: extensions/akBookStyle/trunk/template/ak_horizontal.tpl @ 3830

Last change on this file since 3830 was 3830, checked in by vdigital, 15 years ago

Thumbnail navigation solved

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1{assign var=AK_THUMB_COUNT value=$thumbnails|@count}
2{assign var=AK_BY_COLUMNS value=$AK_THUMB_COUNT/$AK_BY_LINE|@round}
3<td>
4  <table class="thumbnails">
5    {foreach from=$thumbnails item=thumbnail name=tn}
6    {if ($smarty.foreach.tn.index % $AK_BY_COLUMNS == 0)}
7    <tr class="nline">
8      {/if}
9      {if ($smarty.foreach.tn.first) and !empty($navbar) and isset($navbar.URL_PREV)}
10          <td class="ncol" rowspan="{$AK_BY_LINE}">{* Left thumbnail navigation
11            *}<div class="navbar fright">
12              <a class="navButton" href="{$navbar.URL_PREV}"
13                 title="{'previous_page'|@translate}">
14                <img src="{$ROOT_URL}{$themeconf.icon_dir}/left.png"
15                     class="button" alt="{'previous_page'|@translate}">
16              </a>       
17            </div>
18          </td>
19      {/if}
20      <td class="ncol">
21                                <div class="clipwrapper" style="width:{$AK_THUMBNAIL_SIZE}px;height:{$AK_THUMBNAIL_SIZE}px">
22                                        <div class="clip" style="clip:rect({$thumbnail.CLIP_TOP}px {$thumbnail.CLIP_RIGHT}px {$thumbnail.CLIP_BOTTOM}px {$thumbnail.CLIP_LEFT}px);top:-{$thumbnail.CLIP_TOP}px;left:-{$thumbnail.CLIP_LEFT}px">
23                                                <a href="{$thumbnail.AK_URL}" class="load">
24                                                        <img class="thumbnail" src="{$thumbnail.TN_SRC}" alt="{$thumbnail.TN_ALT}" title="{$thumbnail.TN_TITLE}">
25                                                </a>
26                                        </div>
27                                </div>
28      </td>
29      {if ($smarty.foreach.tn.iteration % $AK_BY_COLUMNS == 0) or $smarty.foreach.tn.last }
30              {if ( !empty($navbar) and isset($navbar.URL_NEXT) and !isset($done) )}
31                                {assign var=done value=true}
32              <td class="ncol" rowspan="{$AK_BY_LINE}">{* Right thumbnail navigation *}
33                <div class="navbar fleft">
34                  <a class="navButton" href="{$navbar.URL_NEXT}" title="{'next_page'|@translate}">
35                    <img src="{$ROOT_URL}{$themeconf.icon_dir}/right.png" class="button" alt="{'next_page'|@translate}">
36                  </a>
37                </div>
38              </td>
39              {/if}
40      </tr>
41    {/if}
42    {/foreach}
43  </table> {* end of Thumbnails *}
44</td>
Note: See TracBrowser for help on using the repository browser.