Mercurial > defr > drupal > core
annotate themes/garland/node.tpl.php @ 13:8b6c45761e01 6.6
Drupal 6.6
| author | Franck Deroche <webmaster@defr.org> | 
|---|---|
| date | Tue, 23 Dec 2008 14:32:33 +0100 | 
| parents | c1f4ac30525a | 
| children | 
| rev | line source | 
|---|---|
| webmaster@1 | 1 <?php | 
| webmaster@1 | 2 // $Id: node.tpl.php,v 1.5 2007/10/11 09:51:29 goba Exp $ | 
| webmaster@1 | 3 ?> | 
| webmaster@1 | 4 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>"> | 
| webmaster@1 | 5 | 
| webmaster@1 | 6 <?php print $picture ?> | 
| webmaster@1 | 7 | 
| webmaster@1 | 8 <?php if ($page == 0): ?> | 
| webmaster@1 | 9 <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2> | 
| webmaster@1 | 10 <?php endif; ?> | 
| webmaster@1 | 11 | 
| webmaster@1 | 12 <?php if ($submitted): ?> | 
| webmaster@1 | 13 <span class="submitted"><?php print $submitted; ?></span> | 
| webmaster@1 | 14 <?php endif; ?> | 
| webmaster@1 | 15 | 
| webmaster@1 | 16 <div class="content clear-block"> | 
| webmaster@1 | 17 <?php print $content ?> | 
| webmaster@1 | 18 </div> | 
| webmaster@1 | 19 | 
| webmaster@1 | 20 <div class="clear-block"> | 
| webmaster@1 | 21 <div class="meta"> | 
| webmaster@1 | 22 <?php if ($taxonomy): ?> | 
| webmaster@1 | 23 <div class="terms"><?php print $terms ?></div> | 
| webmaster@1 | 24 <?php endif;?> | 
| webmaster@1 | 25 </div> | 
| webmaster@1 | 26 | 
| webmaster@1 | 27 <?php if ($links): ?> | 
| webmaster@1 | 28 <div class="links"><?php print $links; ?></div> | 
| webmaster@1 | 29 <?php endif; ?> | 
| webmaster@1 | 30 </div> | 
| webmaster@1 | 31 | 
| webmaster@1 | 32 </div> | 
