| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 //$Id $ 3 /** 4 * @file Overriding default node theming 5 */ 6 ?> 7 <div class="node <?php print $node_classes ?>" id="node-<?php print $node->nid; ?>"><div class="node-inner"> 8 9 <?php if ($page == 0 && $title): ?> 10 <h2 class="title"> 11 <a href="<?php print $node_url; ?>"><?php print $title; ?></a> 12 </h2> 13 <?php endif; ?> 14 15 <?php if ($unpublished) : ?> 16 <div class="unpublished"><?php print t('Unpublished'); ?></div> 17 <?php endif; ?> 18 19 <?php if ($picture) print $picture; ?> 20 21 22 <?php if (count($taxonomy)): ?> 23 <div class="taxonomy"><?php print t(' in ') . $terms; ?></div> 24 <?php endif; ?> 25 26 <div class="content"> 27 <?php print $content; ?> 28 </div> 29 30 31 <?php if ($links): ?> 32 <div class="links"> 33 <?php print $links; ?> 34 </div> 35 <?php endif; ?> 36 <?php if ($submitted): ?> 37 <div class="submitted"> 38 <?php print $submitted; ?> 39 </div> 40 <?php endif; ?> 41 </div></div> <!-- /node-inner, /node -->
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |