home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / drupal-6.0.exe / drupal-6.0 / themes / garland / node.tpl.php < prev    next >
Encoding:
PHP Script  |  2007-10-11  |  853 b   |  33 lines

  1. <?php
  2. // $Id: node.tpl.php,v 1.5 2007/10/11 09:51:29 goba Exp $
  3. ?>
  4. <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
  5.  
  6. <?php print $picture ?>
  7.  
  8. <?php if ($page == 0): ?>
  9.   <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
  10. <?php endif; ?>
  11.  
  12.   <?php if ($submitted): ?>
  13.     <span class="submitted"><?php print $submitted; ?></span>
  14.   <?php endif; ?>
  15.  
  16.   <div class="content clear-block">
  17.     <?php print $content ?>
  18.   </div>
  19.  
  20.   <div class="clear-block">
  21.     <div class="meta">
  22.     <?php if ($taxonomy): ?>
  23.       <div class="terms"><?php print $terms ?></div>
  24.     <?php endif;?>
  25.     </div>
  26.  
  27.     <?php if ($links): ?>
  28.       <div class="links"><?php print $links; ?></div>
  29.     <?php endif; ?>
  30.   </div>
  31.  
  32. </div>
  33.