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

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

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


Revision 1.3 - (show annotations) (download) (as text)
Mon Nov 2 12:03:18 2009 UTC (3 weeks, 5 days ago) by jmburnz
Branch: MAIN
CVS Tags: DRUPAL-6--4-1, DRUPAL-6--4-0, HEAD
Changes since 1.2: +4 -5 lines
File MIME type: text/x-php
NW Goliate One, the big update for the new 3.4 version
1 <?php // $Id: block.tpl.php,v 1.2 2008/08/12 16:44:42 jmburnz Exp $
2 /**
3 * @file block.tpl.php
4 *
5 * Theme implementation to display a block.
6 *
7 * @see template_preprocess()
8 * @see template_preprocess_block()
9 */
10 ?>
11 <div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="block <?php print $block_classes .' '. $skinr; ?>">
12 <div class="block-wrapper">
13 <?php if ($block->subject): ?>
14 <h2 class="title"><span><?php print $block->subject; ?></span></h2>
15 <?php endif; ?>
16 <div class="content">
17 <?php print $block->content; ?>
18 </div>
19 </div>
20 </div> <!-- /block -->

  ViewVC Help
Powered by ViewVC 1.1.2