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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Sat Feb 9 10:50:41 2008 UTC (21 months, 2 weeks ago) by vadbarsdrupalorg
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
First release
1 <?php
2 // $Id$
3 ?>
4 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
5
6
7 <?php if ($page == 0): ?>
8 <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
9 <?php endif; ?>
10
11 <div class="clear-block">
12 <?php if ($picture) print $picture; ?>
13 <?php if ($submitted): ?>
14 <span class="submitted_author"><?php print theme('username', $node)?></span>
15 <span class="submitted"><?php print t('Posted at ') . format_date($node->created, 'custom', "H:i o\\n D, m/d/Y"); ?></span>
16 <?php endif; ?>
17 <?php if ($taxonomy): ?>
18 <div class="terms"><?php print t('<b>Tags:</b> ').$terms ?></div>
19 <?php endif;?>
20 </div>
21
22 <div class="content">
23 <?php print $content ?>
24 </div>
25
26 <div class="clear-block">
27 <?php if ($links): ?>
28 <div class="links"><?php print $links; ?></div>
29 <?php endif; ?>
30 </div>
31
32 </div>

  ViewVC Help
Powered by ViewVC 1.1.2