<?php
// $Id$
?>

<div id="node-<?php print $node->nid; ?>" class="node <?php print $node_classes; ?>">
  <div class="inner">
    <?php print theme('grid_block', $picture, 'picture'); ?>

    <?php if ($page == 0): ?>
    <div id="node-title" class="node-title block">
      <div id="node-title-inner" class="node-title-inner inner">
        <h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
      </div>
    </div>
    <?php endif; ?>

    <?php print theme('grid_block', $submitted, 'submitted'); ?>

    <?php if ($node_top && !$teaser): ?>
    <?php print theme('grid_row', $node_top, 'node-top', 'nested'); ?>
    <?php endif; ?>

    <?php print theme('grid_block', $content, 'content'); ?>

    <?php print theme('grid_block', $terms, 'terms'); ?>

    <?php print theme('grid_block', $links, 'links'); ?>
  </div><!-- /inner -->

  <?php if ($node_bottom && !$teaser): ?>
  <?php print theme('grid_row', $node_bottom, 'node-bottom', 'nested'); ?>
  <?php endif; ?>
</div><!-- /node-<?php print $node->nid; ?> -->
