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

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

import theme Simple version 2.4

compatibility with piwigo 2.2:

  • update template, language strings + misc things
  • use rating and core.scripts from default theme
  • cleanup useless javascript stuff
  • use new combined_css feature - thanks to P@t
  • replace known_script with combine_script
File size: 533 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 photo is also linked to current tags', '%d photo are also linked to current tags', $tag.counter)}"
9         rel="nofollow">+
10       {else}
11         href="{$tag.URL}"
12         title="{'display photos linked to this tag'|@translate}">
13       {/if}
14       {$tag.name}</a>
15  </li>
16  {/foreach}
17</ul>
Note: See TracBrowser for help on using the repository browser.