Skip to content

Instantly share code, notes, and snippets.

@iAugur
Created October 11, 2012 12:09
Show Gist options
  • Save iAugur/3871907 to your computer and use it in GitHub Desktop.
Save iAugur/3871907 to your computer and use it in GitHub Desktop.
Drupal theming
<?php
/**
* @file
* Omega theme implementation to display a block for the FacetAPI Facet Block.
* FacetAPI Search facets display block
*/
?>
<?php $tag = $block->subject ? 'section' : 'div'; ?>
<<?php print $tag; ?><?php print $attributes; ?>>
<div class="block-inner clearfix">
<?php print render($title_prefix); ?>
<?php if ($block->subject): ?>
<h4<?php print $title_attributes; ?>><?php print $block->subject; ?></h4>
<?php endif; ?>
<?php print render($title_suffix); ?>
<div<?php print $content_attributes; ?>>
<?php print $content ?>
</div>
</div>
</<?php print $tag; ?>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment