|
Revision 8774, 0.7 KB
(checked in by rvelices, 2 years ago)
|
|
more compact html output
|
-
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>{strip} |
|---|
| 6 | <a class="tagLevel{$tag.level}" href= |
|---|
| 7 | {if isset($tag.U_ADD)} |
|---|
| 8 | "{$tag.U_ADD}" title="{$pwg->l10n_dec('%d photo is also linked to current tags', '%d photos are also linked to current tags', $tag.counter)}" rel="nofollow">+ |
|---|
| 9 | {else} |
|---|
| 10 | "{$tag.URL}" title="{'display photos linked to this tag'|@translate}"> |
|---|
| 11 | {/if} |
|---|
| 12 | {$tag.name}</a></span>{/strip} |
|---|
| 13 | {* 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 *} |
|---|
| 14 | {/foreach} |
|---|
| 15 | </div> |
|---|
| 16 | </dd> |
|---|