summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-05-25 04:57:48 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-05-25 04:57:48 +0000
commit48d3ef604073048a18244726a73793dbbe9dab7f (patch)
tree29d58fb1104a70fc1cc0dbc9a16b65eea71859bf
parent52fd9fffa995bc8e762aca0a075e22008299ed1b (diff)
downloadbrdo-48d3ef604073048a18244726a73793dbbe9dab7f.tar.gz
brdo-48d3ef604073048a18244726a73793dbbe9dab7f.tar.bz2
- Get rid of double node title in Bluemarine PHPTemplate
-rw-r--r--themes/bluemarine/node.tpl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/bluemarine/node.tpl.php b/themes/bluemarine/node.tpl.php
index 60ae5dac4..0609c44b4 100644
--- a/themes/bluemarine/node.tpl.php
+++ b/themes/bluemarine/node.tpl.php
@@ -2,7 +2,7 @@
<?php if ($picture) {
print $picture;
}?>
- <h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2>
+ <?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
<span class="submitted"><?php print $submitted?></span>
<span class="taxonomy"><?php print $terms?></span>
<div class="content"><?php print $content?></div>