root / drupal7 / sites / all / themes / zen / templates / block.tpl.php @ 4b706e38
1 |
<?php
|
---|---|
2 |
/**
|
3 |
* @file
|
4 |
* Returns the HTML for a block.
|
5 |
*
|
6 |
* Complete documentation for this file is available online.
|
7 |
* @see https://drupal.org/node/1728246
|
8 |
*/
|
9 |
?>
|
10 |
<div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>> |
11 |
|
12 |
<?php print render($title_prefix); ?> |
13 |
<?php if ($title): ?> |
14 |
<h2<?php print $title_attributes; ?>><?php print $title; ?></h2> |
15 |
<?php endif; ?> |
16 |
<?php print render($title_suffix); ?> |
17 |
|
18 |
<?php print $content; ?> |
19 |
|
20 |
</div>
|