You are here

context-block-editable-block.tpl.php in Context 6

Same filename and directory in other branches
  1. 6.3 theme/context-block-editable-block.tpl.php

File

theme/context-block-editable-block.tpl.php
View source
<?php

if ($empty) {
  ?>
<div id='<?php

  print $block->bid;
  ?>' class='block context-block-hidden'><?php

  print $block->content;
  ?></div>
<?php

}
else {
  print theme('block', $block);
}