Example of avoiding $content and themeing $node sectins directly

  1. <div class="node<?php print ($sticky) ? " sticky" : ""; ?> blog">
  2.   <?php if ($page == 0): ?>
  3.   <h1 class="title"><a href="<?php print $node_url ?>" title="<?php print $title
  4. ?>" rel="bookmark"><?php print $title ?></a></h1>
  5.   <?php endif; ?>
  6.  
  7.   <div class="content">
  8.   <?php if ($node->field_image['0']['view'] != ''): ?>
  9.     <div class="figure">
  10.     <?php print $node->field_image['0']['view']; ?>
  11.     </div>
  12.   <?php endif; ?>  
  13.  
  14.   <?php print $node->content['body']['#value']; ?>
  15.   </div>
  16. </div>