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

Contents of /contributions/themes/andreas/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 Mar 9 21:07:03 2009 UTC (8 months, 2 weeks ago) by nickbits
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-6--1-0-ALPHA1, DRUPAL-6--1-0-BETA1, HEAD
File MIME type: text/x-php
Initial Release
1 <?php
2 // $Id: node.tpl.php,v 1.1.6.2 2008/11/28 06:14:30 andregriffin Exp $
3 ?>
4 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
5
6 <?php print $picture ?>
7
8 <?php if ($page == 0): ?>
9 <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
10 <?php endif; ?>
11
12 <?php if ($submitted): ?>
13 <span class="submitted"><?php print $submitted; ?></span>
14 <?php endif; ?>
15
16 <div class="content">
17 <?php print $content ?>
18 </div>
19
20 <?php if ($links||$taxonomy){ ?>
21 <div class="meta">
22
23 <?php if ($links): ?>
24 <div class="links">
25 <?php print $links; ?>
26 </div>
27 <?php endif; ?>
28
29 <?php if ($taxonomy): ?>
30 <div class="terms">
31 <?php print $terms ?>
32 </div>
33 <?php endif;?>
34
35 <span class="clear"></span>
36
37 </div>
38 <?php }?>
39
40 </div>

  ViewVC Help
Powered by ViewVC 1.1.2