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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Wed May 13 11:14:06 2009 UTC (6 months, 2 weeks ago) by robby
Branch: MAIN
CVS Tags: DRUPAL-6--1-5, DRUPAL-6--1-6, HEAD
Changes since 1.1: +2 -2 lines
File MIME type: text/x-php
some little php variables rewriting changes in page.tpl.php
1
2 <?php
3 // $Id: node.tpl.php,v 1.1 2008/04/20 00:03:45 robby Exp $
4 // beginning drupal 6.x theme, created by robin / biboo.net / gazwal.com
5 ?>
6 <!-- start div.node -->
7 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print "-sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
8
9 <?php if ($page == 0) { ?>
10 <h2 class="nodetitle"><a href="<?php print $node_url?>"><?php print $title?></a></h2>
11 <?php }; ?>
12
13 <div class="content">
14 <?php print $content?>
15 </div>
16
17 <?php if ($submitted): ?>
18 <div class="submitted">
19 <?php print $submitted?>
20 </div>
21 <?php endif; ?>
22
23
24
25 <div class="linkswrap">
26 <?php if ($links) { ?><div class="postlinks"><?php print $links?></div><?php }; ?>
27 <?php if ($terms) { ?><div class="taxonomy">Tags: <?php print $terms?></div><?php } ?>
28 </div>
29
30 </div>
31 <!-- end div.node -->

  ViewVC Help
Powered by ViewVC 1.1.2