/[drupal]/contributions/themes/pixture_reloaded/block.tpl.php
ViewVC logotype

Contents of /contributions/themes/pixture_reloaded/block.tpl.php

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


Revision 1.4 - (show annotations) (download) (as text)
Mon May 4 20:52:54 2009 UTC (6 months, 3 weeks ago) by jmburnz
Branch: MAIN
CVS Tags: DRUPAL-6--3-2, DRUPAL-6--3-1, HEAD
Changes since 1.3: +5 -4 lines
File MIME type: text/x-php
big commit for 3.1
1 <?php // $Id: block.tpl.php,v 1.3 2008/09/09 13:14:22 jmburnz Exp $
2 /**
3 * @file
4 * block.tpl.php
5 *
6 * Theme implementation to display a block.
7 *
8 * @see template_preprocess()
9 * @see template_preprocess_block()
10 */
11 ?>
12 <div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="block <?php print $block_classes; ?>">
13 <div class="block-inner">
14
15 <?php if ($block->subject): ?>
16 <h2 class="block-title"><?php print $block->subject; ?></h2>
17 <?php endif; ?>
18
19 <div class="block-content">
20 <div class="block-content-inner">
21 <?php print $block->content; ?>
22 </div>
23 </div>
24
25 </div>
26 </div> <!-- /block -->

  ViewVC Help
Powered by ViewVC 1.1.2