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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Tue Jan 27 11:51:28 2009 UTC (10 months ago) by stevejb
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-ALPHA10, DRUPAL-6--1-0-ALPHA11, DRUPAL-6--1-0-ALPHA12, DRUPAL-6--1-0-ALPHA13, DRUPAL-6--1-0-ALPHA5, DRUPAL-6--1-0-ALPHA8, DRUPAL-6--1-0-ALPHA9, HEAD
File MIME type: text/x-php
*** empty log message ***
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 class="teaser-title"><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