Zitat:
Zitat von gravurXXL.de
Hallo,
wie kann ich unwichtige Links mit "nofollow" versehen oder die ganze Informationsbox?
Gruß Grubi
|
in der index.html suchen und
rel="nofollow" hinzufügen
PHP-Code:
{if $_content_7|count > 0}
<h2 class="boxheader">{txt key=TEXT_INFO}</h2>
<div class="infoboxbody">
<ul class="contentlist">
{foreach name=aussen item=box_data from=$_content_7}
<li class="level{$box_data.level}{if $box_data.active} active{/if}"><a rel="nofollow" href="{$box_data.link}">{$box_data.title}</a></li>
{/foreach}
</ul>
</div>
{/if}