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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Tue Jul 24 21:02:16 2007 UTC (2 years, 4 months ago) by melon
Branch: MAIN
CVS Tags: DRUPAL-5--0-11, HEAD
Branch point for: DRUPAL-5
Changes since 1.1: +1 -2 lines
File MIME type: text/x-php
Small modifications
1 <?php // $Id: $
2 //
3 // Ubiquity Drupal theme node.tpl.php file
4 //
5 ?><div class="<?php print $node_classes ?>" id="node-<?php print $node->nid; ?>">
6 <?php if ($page == 0): ?>
7 <h2 class="title">
8 <a href="<?php print $node_url ?>"><?php print $title; ?></a>
9 </h2>
10 <?php endif; ?>
11
12 <?php if ($submitted): ?>
13 <span class="submitted"><?php print format_date($node->created, 'custom', "F jS, Y") . " | " . t('posted ') . t(' by ') . theme('username', $node); ?></span>
14 <?php endif; ?>
15
16 <?php if (count($taxonomy)): ?>
17 <div class="taxonomy"><?php print t(' in ') . $terms ?></div>
18 <?php endif; ?>
19
20 <div class="content">
21 <?php print $content; ?>
22 </div>
23
24 <?php if ($links): ?>
25 <div class="links">
26 <?php print $links; ?>
27 </div>
28 <?php endif; ?>
29
30 </div>

  ViewVC Help
Powered by ViewVC 1.1.2