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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Thu Jun 26 16:36:45 2008 UTC (17 months ago) by krishikesh
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
Initial Release for Drupal 6
1 <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
2
3 <?php if ($picture) { print $picture; } ?>
4
5 <?php if ($page == 0) : ?>
6 <h2 class="nodeTitle">
7 <a href="<?php print $node_url; ?>">
8 <?php print $title; ?>
9 </a>
10 </h2>
11 <?php endif; ?>
12
13 <?php if ($submitted) : ?>
14 <div class="submitted">
15 <?php print t('By ') . theme('username', $node) . t(' - Posted on ') . format_date($node->created, 'custom', "F jS, Y"); ?>
16 </div>
17 <?php endif; ?>
18
19 <?php if ($taxonomy) : ?>
20 <div class="taxonomy">
21 Tagged:&nbsp;&nbsp;<?php print $terms; ?>
22 </div>
23 <?php endif; ?>
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
35 </div>

  ViewVC Help
Powered by ViewVC 1.1.2