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

Contents of /contributions/themes/drupify/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 Feb 20 06:58:24 2008 UTC (21 months, 1 week ago) by mattv
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
File MIME type: text/x-php
Initial Release for Drupal 5.0
1 <div class="node <?php print $node_classes ?>" id="node-<?php print $node->nid; ?>"><div class="node-inner">
2
3 <?php if ($page == 0): ?>
4 <h1 class="title contentheading">
5 <a href="<?php print $node_url; ?>"><?php print $title; ?></a>
6 </h1>
7 <?php endif; ?>
8
9 <?php if ($picture) print $picture; ?>
10
11 <?php if ($submitted): ?>
12 <div class="submitted">
13 <?php print $submitted; ?>
14 </div>
15 <?php endif; ?>
16
17 <?php if (count($taxonomy)): ?>
18 <div class="taxonomy"><?php print t(' in ') . $terms; ?></div>
19 <?php endif; ?>
20
21 <div class="content">
22 <?php print $content; ?>
23 </div>
24
25 <?php if ($links): ?>
26 <div class="links">
27 <?php print $links; ?>
28 </div>
29 <?php endif; ?>
30
31 </div></div> <!-- /node-inner, /node -->

  ViewVC Help
Powered by ViewVC 1.1.2