node.tpl.php
- 7.x drupal-7.x/modules/node/node.tpl.php
- 7.x drupal-7.x/themes/garland/node.tpl.php
- 7.x drupal-7.x/themes/bartik/templates/node.tpl.php
- 6.x drupal-6.x/modules/node/node.tpl.php
- 6.x drupal-6.x/themes/bluemarine/node.tpl.php
- 6.x drupal-6.x/themes/pushbutton/node.tpl.php
- 6.x drupal-6.x/themes/garland/node.tpl.php
1 theme call to node.tpl.php
- node_view in drupal-6.x/
modules/ node/ node.module - Generate a display of the given node.
File
drupal-6.x/themes/pushbutton/node.tpl.phpView source
- <?php
- ?>
- <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
- <?php print $picture ?>
- <?php if ($page == 0): ?>
- <h1 class="title"><a href="<?php print $node_url ?>"><?php print $title ?></a></h1>
- <?php endif; ?>
- <span class="submitted"><?php print $submitted ?></span>
- <div class="taxonomy"><?php print $terms ?></div>
- <div class="content"><?php print $content ?></div>
- <?php if ($links): ?>
- <div class="links">» <?php print $links ?></div>
- <?php endif; ?>
- </div>
-