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

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

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


Revision 1.4 - (show annotations) (download) (as text)
Mon Feb 25 17:00:35 2008 UTC (20 months, 4 weeks ago) by m3avrck
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-5--1-1, DRUPAL-5--1-0, DRUPAL-5--1-2, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
Changes since 1.3: +2 -2 lines
File MIME type: text/x-php
fix nesting of block elements
1 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block">
2
3 <?php if ($page == 0): ?>
4 <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
5 <?php endif; ?>
6
7 <?php if ($submitted || $terms): ?>
8 <div class="meta">
9 <?php if ($submitted): ?>
10 <div class="submitted"><?php print $submitted ?></div>
11 <?php endif; ?>
12
13 <?php if ($terms): ?>
14 <div class="terms"><?php print $terms ?></div>
15 <?php endif;?>
16 </div>
17 <?php endif; ?>
18
19 <div class="content clear-block">
20 <?php print $picture ?>
21 <?php print $content ?>
22 </div>
23
24 <?php
25 if ($links) {
26 print '<div class="node-links">'. $links .'</div>';
27 }
28 ?>
29
30 </div>

  ViewVC Help
Powered by ViewVC 1.1.2