source: extensions/gally/gally-default/template/tags.tpl @ 12632

Last change on this file since 12632 was 12632, checked in by grum, 12 years ago

feature:2508 - recent.png file is missing
bug:2509 - html code in picture nav title

  • Property svn:executable set to *
File size: 1.9 KB
Line 
1<div id="content" class="content">
2
3  <div class="titrePage" id='titrePageID'>
4
5    {if isset($MENUBAR)}
6      {if #menuAnimated# == "noswitch"}
7        {$MENUBAR}
8      {else}
9      <div id="menuswitcher">
10        <a id="icon_menu" class="button" onclick="gallyCP.switchmenu('', '{$ROOT_URL}{$themeconf.icon_dir}/');">&nbsp;
11        </a>
12      </div>
13      {/if}
14    {/if}
15
16
17    <ul class="categoryActions">
18{if $display_mode == 'letters'}
19      <li><a id="icon_cloud" class="button" href="{$U_CLOUD}" title="{'cloud'|@translate}"></a></li>
20{/if}
21
22{if $display_mode == 'cloud'}
23      <li><a id="icon_tag_letters" class="button" href="{$U_LETTERS}" title="{'letters'|@translate}"></a></li>
24{/if}
25
26      <li><a id="icon_home" class="button" href="{$U_HOME}" title="{'return to homepage'|@translate}"></a></li>
27    </ul>
28    <h2>{'Tags'|@translate}</h2>
29  </div>
30
31
32  {if #menuAnimated# != "noswitch" and isset($MENUBAR)}
33    {$MENUBAR}
34  {/if}
35
36{if isset($tags)}
37  {if $display_mode == 'cloud'}
38  <div id="fullTagCloud">
39    {foreach from=$tags item=tag}
40    <span><a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{$tag.counter}">{$tag.name}</a></span>
41    {/foreach}
42  </div>
43  {/if}
44
45  {if $display_mode == 'letters'}
46  <table class="tagLetters">
47    <tr>
48      <td valign="top">
49    {foreach from=$letters item=letter}
50  <fieldset class="tagLetter">
51    <legend class="tagLetterLegend">{$letter.TITLE}</legend>
52    <table class="tagLetterContent">
53      {foreach from=$letter.tags item=tag}
54      <tr class="tagLine">
55        <td><a href="{$tag.URL}"  title="{$tag.name}">{$tag.name}</a></td>
56        <td class="nbEntries">{$pwg->l10n_dec('%d photo', '%d photos', $tag.counter)}</td>
57      </tr>
58      {/foreach}
59    </table>
60  </fieldset>
61      {if isset($letter.CHANGE_COLUMN) }
62      </td>
63      <td valign="top">
64      {/if}
65    {/foreach}
66      </td>
67    </tr>
68  </table>
69  {/if}
70{/if}
71
72</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.