diff options
Diffstat (limited to 'themes/pushbutton/node.tpl.php')
-rw-r--r-- | themes/pushbutton/node.tpl.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/themes/pushbutton/node.tpl.php b/themes/pushbutton/node.tpl.php index c464011ce..eac32a197 100644 --- a/themes/pushbutton/node.tpl.php +++ b/themes/pushbutton/node.tpl.php @@ -3,7 +3,7 @@ ?> <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>"> <?php print $picture ?> - <?php if ($page == 0): ?> + <?php if (!$page): ?> <h1 class="title"><a href="<?php print $node_url ?>"><?php print $title ?></a></h1> <?php endif; ?> <span class="submitted"><?php print $submitted ?></span> @@ -11,5 +11,8 @@ <div class="content"><?php print $content ?></div> <?php if ($links): ?> <div class="links">» <?php print $links ?></div> + + <?php print $comments; ?> + <?php endif; ?> </div> |