/[drupal]/contributions/modules/headerimage/headerimage-block.tpl.php
ViewVC logotype

Contents of /contributions/modules/headerimage/headerimage-block.tpl.php

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


Revision 1.1 - (show annotations) (download) (as text)
Mon Apr 7 07:46:01 2008 UTC (19 months, 2 weeks ago) by sutharsan
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
File MIME type: text/x-php
Upgrade to Drupal 6 (with no functional changes).
1 <?php
2 // $Id:$
3
4 /**
5 * @file headerimage-block.tpl.php
6 * Default theme implementation to display the header image block.
7 *
8 * Available variables:
9 * - $node: rendered node object
10 * - $unpublished: node is unpublished
11 * - $content: node content
12 *
13 * @see template_preprocess_headerimage_block()
14 */
15 ?>
16
17 <?php if ($unpublished): ?>
18 <div class="node-unpublished">
19 <?php endif; ?>
20
21 <?php print $content; ?>
22
23 <?php if ($unpublished): ?>
24 </div>
25 <?php endif; ?>

  ViewVC Help
Powered by ViewVC 1.1.2