root / drupal7 / sites / all / themes / zen / templates / block--no-wrapper.tpl.php @ 4b706e38
1 | 87dbc3bf | Benjamin Luce | <?php
|
---|---|---|---|
2 | /**
|
||
3 | * @file
|
||
4 | * Returns the HTML for a block with bare minimum HTML.
|
||
5 | *
|
||
6 | * Complete documentation for this file is available online.
|
||
7 | * @see https://drupal.org/node/1728250
|
||
8 | */
|
||
9 | ?>
|
||
10 | |||
11 | <?php print render($title_prefix); ?> |
||
12 | <?php if ($title): ?> |
||
13 | <h2<?php print $title_attributes; ?>><?php print $title; ?></h2> |
||
14 | <?php endif; ?> |
||
15 | <?php print render($title_suffix); ?> |
||
16 | |||
17 | <?php print $content; ?> |