source: extensions/floPure/menubar_tags.tpl @ 3333

Last change on this file since 3333 was 3333, checked in by flop25, 15 years ago

first commit

File size: 585 bytes
Line 
1<dt>{$block->get_title()|@translate}</dt>
2<dd>
3        <ul id="menuTagCloud">
4                {foreach from=$block->data item=tag}
5                <li>
6                        {if !empty($tag.U_ADD) }
7                                <a href="{$tag.U_ADD}"
8                                        title="{$pwg->l10n_dec('%d element are also linked to current tags', '%d elements are also linked to current tags', $tag.counter)}"
9                                        rel="nofollow">
10                                        <img src="{$ROOT_URL}{$themeconf.icon_dir}/add_tag.png" alt="+" />
11                                </a>
12                        {/if}
13                        <a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{'See elements linked to this tag only'|@translate}">{$tag.name}</a>
14                        </li>
15                {/foreach}
16        </ul>
17</dd>
18
Note: See TracBrowser for help on using the repository browser.