in the node.tpl we have:

print $node_url; " rel="bookmark"> print $title;
print $unpublished;

thats ok, but shouldnt we add "nofollow" to the a tag because this link, links the page you are currently on. would be better for the spiders.

Comments

marcoka’s picture


      <h1 class="node-title">
        <a href="<?php print $node_url; ?>" rel="nofollow bookmark"><?php print $title; ?></a>
        <?php print $unpublished; ?>
      </h1>

Jeff Burnz’s picture

Status: Active » Closed (won't fix)

Not seeing any point in adding nofollow by default, that is something that would be very specific. It does not link to the page you are currently on, all node titles only show on teasers, the page title in page.tpl.php handles the full view title, which is not linked.

marcoka’s picture

ah yes, you are right. i was a little confused. i removed some lines, thats why

oxyzenwebmedia’s picture

Can more than one URL have rel=bookmark" in a single page ?