/[drupal]/contributions/themes/deco/node.tpl.php
ViewVC logotype

Contents of /contributions/themes/deco/node.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.6 - (show annotations) (download) (as text)
Mon Aug 20 11:30:38 2007 UTC (2 years, 3 months ago) by instromaniac
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
Changes since 1.5: +7 -5 lines
File MIME type: text/x-php
Fixed bug 168731
1 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky && $page == 0) { print ' node-sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?><?php if ($page != 0) { print ' node-page'; } ?>">
2 <?php if ($page == 0): ?>
3 <div class="node-top"><div class="top-right"><div class="top-middle"></div></div></div>
4 <?php endif; ?>
5 <div class="node-body">
6 <?php print $picture; ?>
7 <div class="node-title clear-block">
8 <?php if ($page == 0): ?>
9 <h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
10 <?php endif; ?>
11 <?php if ($submitted): ?>
12 <div class="submitted">
13 <?php if ($page == 0): ?>
14 <div class="left">
15 <?php endif; ?>
16 <p<?php print ($page == 0) ? ' class="right"' : '' ?>>
17 <?php print $submitted; ?>
18 </p>
19 <?php if ($page == 0): ?>
20 </div>
21 <?php endif; ?>
22 </div>
23 <?php endif; ?>
24 </div>
25
26 <div class="content">
27 <?php print $content ?>
28 </div>
29
30 <div class="clear-block clear">
31 <div class="meta">
32 <?php if ($taxonomy): ?>
33 <div class="terms"><?php print $terms ?></div>
34 <?php endif;?>
35 </div>
36
37 <?php if ($links): ?>
38 <div class="links"><?php print $links; ?></div>
39 <?php endif; ?>
40 </div>
41 <div class="hr"><span></span></div>
42 </div>
43 </div>

  ViewVC Help
Powered by ViewVC 1.1.2