aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/menubar_tags.tpl
blob: 82c2f9826b514d213b1dae1a4cc333f7df5cb9c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<dt>{'Related tags'|@translate}</dt>
<dd>
	<ul id="menuTagCloud">
		{foreach from=$block->data item=tag}
		<li>
			{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 elements linked to this tag only'|@translate}">{$tag.name}</a>
			</li>
		{/foreach}
	</ul>
</dd>