root / drupal7 / sites / all / themes / danland / block.tpl.php @ 4b706e38
1 | 85ad3d82 | Assos Assos | <?php
|
---|---|---|---|
2 | // $Id: block.tpl.php,v 1.3.4.1 2010/11/11 13:52:44 danprobo Exp $
|
||
3 | ?>
|
||
4 | <div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>> |
||
5 | |||
6 | <?php print render($title_prefix); ?> |
||
7 | <?php if ($block->subject): ?> |
||
8 | <h2<?php print $title_attributes; ?> class="block-title"><?php print $block->subject ?></h2> |
||
9 | <?php endif;?> |
||
10 | <?php print render($title_suffix); ?> |
||
11 | |||
12 | <div class="content"<?php print $content_attributes; ?>> |
||
13 | <?php print $content ?> |
||
14 | </div> <!-- end block content --> |
||
15 | </div> <!-- end block --> |