Created
October 11, 2012 12:09
-
-
Save iAugur/3871907 to your computer and use it in GitHub Desktop.
Drupal theming
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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