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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Fri Jul 18 04:17:45 2008 UTC (16 months, 1 week ago) by couzinhub
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
File MIME type: text/x-php
Initial commit of the Abarre theme
1 <?php
2 // $Id$
3 ?>
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 ($picture) print $picture; ?>
13
14 <?php if ($submitted): ?>
15 <span class="submitted"><?php print t('Posted ') . format_date($node->created, 'custom', "F jS, Y") . t(' by ') . theme('username', $node); ?></span>
16 <?php endif; ?>
17
18 <?php if (count($taxonomy)): ?>
19 <div class="taxonomy"><?php print t(' in ') . $terms ?></div>
20 <?php endif; ?>
21
22 <div class="content">
23 <?php print $content; ?>
24 </div>
25
26 <?php if ($links): ?>
27 <div class="links">
28 <?php print $links; ?>
29 </div>
30 <?php endif; ?>
31
32 </div>

  ViewVC Help
Powered by ViewVC 1.1.2