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

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

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


Revision 1.5 - (show annotations) (download) (as text)
Mon Dec 29 05:56:41 2008 UTC (10 months, 3 weeks ago) by eric3
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +11 -2 lines
File MIME type: text/x-php
HEAD update
1 <?php
2 // $Id$
3
4 /**
5 * @file
6 * NoProb template file for nodes.
7 */
8 ?>
9
10 <div id="node-<?php print $node->nid ?>" class="node<?php if ($sticky) print ' sticky'; if (!$status) print ' node-unpublished'; ?> clear-block">
11 <?php if ($page == 0) { ?>
12 <h2 class="title"><a href="<?php print $node_url ?>"><?php print $title ?></a></h2>
13 <?php } ?>
14 <?php if ($picture) { ?>
15 <?php print $picture ?>
16 <?php } ?>
17 <div class="content"><?php print $content ?></div>
18 <div class="meta clear-block">
19 <?php if ($links) { ?>
20 <div class="meta-links"><?php print $links ?></div>
21 <?php } ?>
22 <?php if ($submitted) { ?>
23 <div class="submitted">
24 <?php //print $submitted ?>
25 <?php print t('!date | !username', array('!username' => theme('username', $node), '!date' => format_date($node->created))) ?>
26 </div>
27 <?php } ?>
28 <?php if ($terms || $taxonomy) { ?>
29 <div class="terms"><?php print $terms ?></div>
30 <?php } ?>
31 </div>
32 </div>

  ViewVC Help
Powered by ViewVC 1.1.2