|
Revision 5752, 0.7 KB
(checked in by rvelices, 3 years ago)
|
|
feqture 1583 : show related tags block also when browsing non tag sections
|
-
Property svn:eol-style set to
LF
|
| 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> |
|---|