12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- ?>
- <div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
- <?php print render($title_prefix); ?>
- <?php if ($block->subject): ?>
- <h2<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
- <?php endif;?>
- <?php print render($title_suffix); ?>
- <div class="content"<?php print $content_attributes; ?>>
- <?php print $content ?>
- </div>
- </div>
|