source: trunk/themes/default/template/menubar_tags.tpl @ 5752

Last change on this file since 5752 was 5752, checked in by rvelices, 14 years ago

feqture 1583 : show related tags block also when browsing non tag sections

  • Property svn:eol-style set to LF
File size: 684 bytes
Line 
1<dt>{'Related tags'|@translate}</dt>
2<dd>
3        <div id="menuTagCloud">
4                {foreach from=$block->data item=tag}
5                <span>
6                        <a class="tagLevel{$tag.level}"
7                        {if isset($tag.U_ADD)}
8                                href="{$tag.U_ADD}"
9                                title="{$pwg->l10n_dec('%d image is also linked to current tags', '%d images are also linked to current tags', $tag.counter)}"
10                                rel="nofollow">+
11                        {else}
12                                href="{$tag.URL}"
13                                title="{'See elements linked to this tag only'|@translate}">
14                        {/if}
15                                {$tag.name}</a></span>
16{* 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 *}
17                {/foreach}
18        </div>
19</dd>
Note: See TracBrowser for help on using the repository browser.