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

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

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


Revision 1.4 - (show annotations) (download) (as text)
Tue Apr 8 14:12:20 2008 UTC (19 months, 2 weeks ago) by nickbits
Branch: MAIN
CVS Tags: DRUPAL-5--1-8, DRUPAL-5--1-4, DRUPAL-5--1-7, DRUPAL-5--1-6, HEAD
Branch point for: DRUPAL-5
Changes since 1.3: +6 -2 lines
File MIME type: text/x-php
Logo added
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.andreas02_print_terms($node->nid);
21 endif; ?>
22 </div>
23
24
25 <div class="content">
26 <?php print $content; ?>
27 </div>
28
29 <?php if ($links): ?>
30 <div class="links">
31 <?php print $links; ?>
32 </div>
33 <?php endif; ?>
34 </div>

  ViewVC Help
Powered by ViewVC 1.1.2