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

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

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


Revision 1.7 - (show annotations) (download) (as text)
Sat Jul 19 10:26:29 2008 UTC (16 months, 1 week ago) by nickbits
Branch: MAIN
CVS Tags: DRUPAL-5--1-7, HEAD
Changes since 1.6: +1 -1 lines
File MIME type: text/x-php
no message
1 <div class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
2 <?php if ($page == 0): ?>
3 <h3 class="title">
4 <a href="<?php print $node_url ?>"><?php print $title; ?></a>
5 </h3>
6 <?php endif; ?>
7
8 <?php if ($picture) print $picture; ?>
9
10 <div class="submitted">
11 <?php
12 if ($submitted):
13 print t('Published by ') . theme('username', $node) .' on ' .format_date($node->created, 'custom', "F jS, Y") ;
14 $pred = " in ";
15 else:
16 $pred = "Filed in ";
17 endif;
18
19 if (count($taxonomy)):
20 print $pred.light_print_terms($node->nid);
21 endif; ?>
22 </div>
23
24 <div class="content">
25 <?php print $content; ?>
26 </div>
27
28 <?php if ($links): ?>
29 <div class="links">
30 <?php print $links; ?>
31 </div>
32 <?php endif; ?>
33 </div>

  ViewVC Help
Powered by ViewVC 1.1.2