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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Tue Aug 12 20:32:34 2008 UTC (15 months, 2 weeks ago) by doncoryon
Branch: MAIN
CVS Tags: DRUPAL-6--2-1, DRUPAL-6--2-0, DRUPAL-6--1-0, DRUPAL-6--1-1, HEAD
Branch point for: DRUPAL-6--1, DRUPAL-6--2
File MIME type: text/x-php
Intial release
1 <?php
2 // $Id$
3 ?>
4
5 <?php if ($page == 0): ?>
6
7 <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
8
9 <?php if ($picture) { print $picture; }?>
10
11 <div class="date_box">
12 <div class="date_box_month"> <?php print (format_date($node->created, 'custom', 'M')) ?> </div>
13 <div class="date_box_day"> <?php print (format_date($node->created, 'custom', 'd')) ?> </div>
14 </div>
15
16 <?php if ($page == 0) { ?><h3><a href="<?php print $node_url?>"><?php print $title?></a></h3><?php }; ?>
17 <div class="taxonomy"><?php print $terms?></div>
18 <div class="content"><?php print $content?></div>
19 <?php if ($links) { ?><div class="links"><?php print $links?></div><?php }; ?>
20 </div>
21
22 <?php endif; ?>
23
24
25 <?php if ($page == 1): ?>
26
27 <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
28 <?php if ($picture) { print $picture; }?>
29 <?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
30 <span class="submitted"><?php print $submitted?></span>
31 <div class="taxonomy"><?php print $terms?></div>
32 <div class="content"><?php print $content?></div>
33 <?php if ($links) { ?><div class="links"><?php print $links?></div><?php }; ?>
34 </div>
35
36 <?php endif; ?>

  ViewVC Help
Powered by ViewVC 1.1.2