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

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

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


Revision 1.3 - (show annotations) (download) (as text)
Thu Aug 21 20:06:41 2008 UTC (15 months ago) by stevelockwood
Branch: MAIN
CVS Tags: DRUPAL-6--1-5, DRUPAL-6--1-6, HEAD
Changes since 1.2: +25 -20 lines
File MIME type: text/x-php
CSS change to handle horizontal menus
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 <h2 class="title">
5 <a href="<?php print $node_url; ?>"><?php print $title; ?></a>
6 </h2>
7 <?php endif; ?>
8
9 <?php if ($unpublished) : ?>
10 <div class="unpublished"><?php print t('Unpublished'); ?></div>
11 <?php endif; ?>
12
13 <?php if ($picture) print $picture; ?>
14
15 <?php if ($submitted): ?>
16 <div class="submitted">
17 <?php print $submitted; ?>
18 </div>
19 <?php endif; ?>
20
21 <?php if (count($taxonomy)): ?>
22 <div class="taxonomy"><?php print t(' in ') . $terms; ?></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 <?php print $links; ?>
32 </div>
33 <?php endif; ?>
34
35 </div></div>

  ViewVC Help
Powered by ViewVC 1.1.2