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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Wed Oct 1 03:26:19 2008 UTC (13 months, 3 weeks ago) by jwolf
Branch: MAIN
CVS Tags: DRUPAL-6--1-8, DRUPAL-6--1-9, 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, HEAD
Branch point for: DRUPAL-6--1, DRUPAL-6--2
File MIME type: text/x-php
initial commit of the Acquia Marina theme
1 <?php
2 // $Id$
3 ?>
4
5 <!-- start node.tpl.php -->
6 <div id="node-<?php print $node->nid; ?>" class="node <?php print $node_classes; ?>">
7 <?php print $picture ?>
8
9 <?php if ($page == 0): ?>
10 <h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
11 <?php endif; ?>
12
13 <div class="meta">
14 <?php if ($submitted): ?>
15 <span class="submitted"><?php print $submitted ?></span>
16 <?php endif; ?>
17 </div>
18
19 <div class="content">
20 <?php print $content ?>
21 </div>
22
23 <?php if ($terms): ?>
24 <div class="terms">
25 <?php print $terms; ?>
26 </div>
27 <?php endif;?>
28
29 <?php if ($links): ?>
30 <div class="links">
31 <?php print $links; ?>
32 </div>
33 <?php endif; ?>
34
35 <?php if ($node_bottom && !$teaser): ?>
36 <div id="node-bottom">
37 <?php print $node_bottom; ?>
38 </div>
39 <?php endif; ?>
40 </div>
41 <!-- /#node-<?php print $node->nid; ?> -->

  ViewVC Help
Powered by ViewVC 1.1.2