source: extensions/simple_themes/simple/template/menubar_tags.tpl @ 13546

Last change on this file since 13546 was 13546, checked in by plg, 12 years ago

import theme Simple, version 2.0

  • adaptation of the theme for Piwigo 2.1
File size: 476 bytes
Line 
1<h3>{'Related tags'|@translate}</h3>
2<ul id="menuTagCloud">
3  {foreach from=$block->data item=tag}
4  <li>
5        <a class="tagLevel{$tag.level}"
6        {if isset($tag.U_ADD)}
7                href="{$tag.U_ADD}"
8                title="{$pwg->l10n_dec('%d image is also linked to current tags', '%d images are also linked to current tags', $tag.counter)}"
9                rel="nofollow">+
10        {else}
11                href="{$tag.URL}"
12                title="{'See elements linked to this tag only'|@translate}">
13        {/if}
14                {$tag.name}</a>
15  </li>
16  {/foreach}
17</ul>
Note: See TracBrowser for help on using the repository browser.