Imported drupal-5.3
[drupal.git] / themes / engines / phptemplate / node.tpl.php
blob872ea0c292c1f652cd149184a9ca44d3f98fa4d1
1 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block">
3 <?php print $picture ?>
5 <?php if ($page == 0): ?>
6 <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
7 <?php endif; ?>
9 <div class="meta">
10 <?php if ($submitted): ?>
11 <span class="submitted"><?php print $submitted ?></span>
12 <?php endif; ?>
14 <?php if ($terms): ?>
15 <span class="terms"><?php print $terms ?></span>
16 <?php endif;?>
17 </div>
19 <div class="content">
20 <?php print $content ?>
21 </div>
23 <?php
24 if ($links) {
25 print $links;
29 </div>