You are here

block.tpl.php in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7

Same filename and directory in other branches
  1. 7.2 themes/vartheme2/templates/blocks/block.tpl.php

File

themes/vartheme2/templates/blocks/block.tpl.php
View source
<section id="<?php

print $block_html_id;
?>" class="<?php

print $classes;
?> clearfix"<?php

print $attributes;
?>>

  <?php

print render($title_prefix);
?>
  <?php

if ($title) {
  ?>
    <h3<?php

  print $title_attributes;
  ?>><?php

  print $title;
  ?></h3>
  <?php

}
?>
  <?php

print render($title_suffix);
?>

  <?php

print $content;
?>
  
</section> <!-- /.block -->