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

Contents of /contributions/themes/bluefire/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 Feb 12 04:32:52 2008 UTC (21 months, 2 weeks ago) by collectivecolors
Branch: MAIN
CVS Tags: DRUPAL-5--2-2, DRUPAL-5--2-3, DRUPAL-5--2-1, HEAD
Branch point for: DRUPAL-5--2
File MIME type: text/x-php
original bluefire theme
1 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if(!$page) { print ' node-teaser'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block">
2
3 <?php if ($page == 0): ?>
4 <h2 class='title'><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
5 <?php endif; ?>
6
7 <div class="meta">
8 <?php if ($submitted) : ?>
9 <div class="submitted">
10 <?php print t('By ') . theme('username', $node) . t(' - Posted on ') . format_date($node->created, 'custom', "F jS, Y"); ?>
11 </div>
12 <?php endif; ?>
13
14 <?php if ($terms) : ?>
15 <div class="terms">Tagged: <?php print $terms ?></div>
16 <?php endif;?>
17 </div>
18
19 <?php print $picture ?>
20
21 <div class="content">
22 <?php print $content ?>
23 </div>
24
25 <?php if ($links) { ?>
26 <div class='node-links'>
27 <?php print $links; ?>
28 </div>
29 <?php } ?>
30
31 </div>

  ViewVC Help
Powered by ViewVC 1.1.2