aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default/template/menubar_tags.tpl
blob: ad1d752da4946eef26f6f1dc38b5456a7fcfca96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<dt>{'Related tags'|@translate}</dt>
<dd>
	<div id="menuTagCloud">
		{foreach from=$block->data item=tag}
		<span>
			<a class="tagLevel{$tag.level}" href="{$tag.U_ADD}"
				title="{$pwg->l10n_dec('%d image is also linked to current tags', '%d images are also linked to current tags', $tag.counter)}"
				rel="nofollow">
				+{$tag.name}</a></span>
{* 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 *}
		{/foreach}
	</div>
</dd>