aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/test_menu/menu_templates/menubar_tags.tpl
blob: b0fd9cf04e82cc3bfb65a0a21bcc94986978a093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- tags menu bar -->
<dt>{$section.NAME|@translate}</dt>
<dd>
  <ul id="menuTagCloud">
    {foreach from=$section.ITEMS item=tag}
    <li>
      {if !empty($tag.U_ADD) }
        <a href="{$tag.U_ADD}"
          title="{$pwg->l10n_dec('%d element are also linked to current tags', '%d elements are also linked to current tags', $tag.counter)}"
          rel="nofollow">
          <img src="{$ROOT_URL}{$themeconf.icon_dir}/add_tag.png" alt="+" />
        </a>
      {/if}
      <a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{'See elements linked to this tag only'|@translate}">{$tag.name}</a>
      </li>
    {/foreach}
  </ul>
</dd>