Parent Directory
|
Revision Log
|
Revision Graph
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 |