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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Sat Feb 28 23:33:58 2009 UTC (8 months, 4 weeks ago) by jwolf
Branch: MAIN
CVS Tags: DRUPAL-6--1-4, 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 Acquia Slate 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 <?php if ($terms): ?>
20 <div class="terms">
21 <?php print $terms; ?>
22 </div>
23 <?php endif;?>
24
25 <div class="content">
26 <?php print $content ?>
27 </div>
28
29 <?php if ($links): ?>
30 <div class="links">
31 <div class="corner top-right"></div>
32 <div class="corner top-left"></div>
33 <div class="inner">
34 <?php print $links; ?>
35 </div>
36 <div class="corner bottom-right"></div>
37 <div class="corner bottom-left"></div>
38 </div>
39 <?php endif; ?>
40
41 <?php if ($node_bottom && !$teaser): ?>
42 <div id="node-bottom">
43 <?php print $node_bottom; ?>
44 </div>
45 <?php endif; ?>
46 </div>
47 <!-- /#node-<?php print $node->nid; ?> -->

  ViewVC Help
Powered by ViewVC 1.1.2