block.tpl.php 549 B

123456789101112131415161718
  1. <section id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
  2. <?php print render($title_prefix); ?>
  3. <?php if ($block->subject): ?>
  4. <h2<?php print $title_attributes; ?>><?php print $block->subject; ?></h2>
  5. <?php endif; ?>
  6. <?php print render($title_suffix); ?>
  7. <?php if ($block->module == "menu"): ?>
  8. <div class="menu-wrapper">
  9. <?php endif; ?>
  10. <?php print render($content); ?>
  11. <?php if ($block->module == "menu"): ?>
  12. </div>
  13. <?php endif; ?>
  14. </section>