/[drupal]/contributions/themes/basic/box.tpl.php
ViewVC logotype

Contents of /contributions/themes/basic/box.tpl.php

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


Revision 1.2 - (show annotations) (download) (as text)
Tue Jul 22 19:15:17 2008 UTC (16 months ago) by couzinhub
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-7--1
Changes since 1.1: +2 -2 lines
File MIME type: text/x-php
commiting D7 code
1 <?php
2 // $Id$
3
4 /**
5 * @file box.tpl.php
6 *
7 * Theme implementation to display a box.
8 *
9 * Available variables:
10 * - $title: Box title.
11 * - $content: Box content.
12 *
13 * @see template_preprocess()
14 */
15 ?>
16 <div class="box">
17
18 <?php if ($title): ?>
19 <h3><?php echo $title ?></h3>
20 <?php endif; ?>
21
22 <div class="content"><?php echo $content ?></div>
23 </div>

  ViewVC Help
Powered by ViewVC 1.1.2