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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Mon Jun 23 18:01:48 2008 UTC (17 months ago) by plutado
Branch: MAIN
CVS Tags: DRUPAL-5--1-9, DRUPAL-5--1-8, DRUPAL-5--1-5, DRUPAL-5--1-4, DRUPAL-5--1-1, DRUPAL-5--1-0, DRUPAL-5--1-3, DRUPAL-5--1-2, DRUPAL-6--1-4, DRUPAL-6--1-5, DRUPAL-6--1-6, DRUPAL-6--1-7, DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-6--1-3, DRUPAL-5--1-11, DRUPAL-5--1-10, DRUPAL-5--1-12, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--2, DRUPAL-6--1
File MIME type: text/x-php
initial commit of theme
1 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block">
2
3 <?php print $picture ?>
4
5 <?php if ($page == 0): ?>
6 <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
7 <?php endif; ?>
8
9 <div class="meta">
10 <?php if ($submitted): ?>
11 <span class="submitted">
12 <?php print 'Published ' . format_date($node->created, 'custom', 'F j, Y, g:i a') . ' | ' . 'by ' . theme('username', $node); ?>
13 </span>
14 <?php endif; ?>
15
16 <div class="content">
17 <?php print $content ?>
18 </div>
19
20 <?php if ($terms): ?>
21 <div id="tax">
22 <span class="terms">
23 <div class="filed">Categories: </div><?php print $terms ?>
24 </span>
25 </div>
26 <?php endif;?>
27 </div>
28
29 <div id="links">
30 <?php
31 if ($links) {
32 print $links;
33 }
34 ?>
35 </div>
36
37 </div>

  ViewVC Help
Powered by ViewVC 1.1.2