| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: node.tpl.php,v 1.1.2.2 2009/11/11 05:25:35 sociotech Exp $ 3 ?> 4 5 <div id="node-<?php print $node->nid; ?>" class="node <?php print $node_classes; ?>"> 6 <div class="inner"> 7 <?php print $picture ?> 8 9 <?php if ($page == 0): ?> 10 <h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2> 11 <?php endif; ?> 12 13 <?php if ($submitted): ?> 14 <div class="meta"> 15 <span class="submitted"><?php print $submitted ?></span> 16 </div> 17 <?php endif; ?> 18 19 <?php if ($node_top && !$teaser): ?> 20 <div id="node-top" class="node-top row nested"> 21 <div id="node-top-inner" class="node-top-inner inner"> 22 <?php print $node_top; ?> 23 </div><!-- /node-top-inner --> 24 </div><!-- /node-top --> 25 <?php endif; ?> 26 27 <div class="content clearfix"> 28 <?php print $content ?> 29 </div> 30 31 <?php if ($terms): ?> 32 <div class="terms"> 33 <?php print $terms; ?> 34 </div> 35 <?php endif;?> 36 37 <?php if ($links): ?> 38 <div class="links"> 39 <?php print $links; ?> 40 </div> 41 <?php endif; ?> 42 </div><!-- /inner --> 43 44 <?php if ($node_bottom && !$teaser): ?> 45 <div id="node-bottom" class="node-bottom row nested"> 46 <div id="node-bottom-inner" class="node-bottom-inner inner"> 47 <?php print $node_bottom; ?> 48 </div><!-- /node-bottom-inner --> 49 </div><!-- /node-bottom --> 50 <?php endif; ?> 51 </div><!-- /node-<?php print $node->nid; ?> -->
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 |