aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/menubar_tags.tpl
blob: 220175008bb0658500e716b584588ae88f23ea48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<dt>{'Related tags'|@translate}</dt>
<dd>
	<div id="menuTagCloud">
		{foreach from=$block->data item=tag}
		<span>
			{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 images linked to this tag only'|@translate}">{$tag.name}</a>{* there should be no space between end of a and span elements to avoid IE8 bug https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=366567 *}</span>
		{/foreach}
	</div>
</dd>