comparison themes/garland/node.tpl.php @ 1:c1f4ac30525a 6.0

Drupal 6.0
author Franck Deroche <webmaster@defr.org>
date Tue, 23 Dec 2008 14:28:28 +0100
parents
children
comparison
equal deleted inserted replaced
0:5a113a1c4740 1:c1f4ac30525a
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>