source: extensions/Slim/template/menubar_tags.tpl @ 19029

Last change on this file since 19029 was 18811, checked in by Miklfe, 12 years ago
File size: 770 bytes
Line 
1<li class="liSub">
2
3<span class="dd_wrapper">{'Related tags'|@translate}</span>
4        <div class="sub">
5
6        <div id="menuTagCloud">
7                {foreach from=$block->data item=tag}
8                <span>
9                        <a class="tagLevel{$tag.level}"
10                        {if isset($tag.U_ADD)}
11                                href="{$tag.U_ADD}"
12                                title="{$pwg->l10n_dec('%d image is also linked to current tags', '%d images are also linked to current tags', $tag.counter)}"
13                                rel="nofollow">+
14                        {else}
15                                href="{$tag.URL}"
16                                title="{'See images linked to this tag only'|@translate}">
17                        {/if}
18                                {$tag.name}</a></span>
19{* ABOVE there should be no space between text, </a> and </span> elements to avoid IE8 bug https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=366567 *}
20                {/foreach}
21        </div>
22</div>
23</li>
Note: See TracBrowser for help on using the repository browser.