if a teaser in a node template

  1. <?php if ($teaser): ?>
  2. <!-- this displays when teaser of this node type is called -->
  3.     <h2 class="title">
  4.       <a href="<?php print $node_url; ?>"><?php print $title; ?></a>
  5.     </h2>
  6. <!-- any code you like -->
  7. <?php endif; ?>
  8.  
  9. <?php if (!$teaser): ?>
  10. <!-- this displays when it's not a teaser -->
  11.  
  12.    <h2 class="title">
  13.      <a href="<?php print $node_url; ?>"><?php print $title; ?></a>
  14.    </h2>
  15. <!-- any code you like -->
  16. <?php endif; ?>
  17.