File: /home/mmickelson/otbproductions.org.old/wp-content/themes/eclipse/search.php
<?php
/**
* Search template used by Eclipse.
*
* Authors: Tyler Cunningham, Trent Lapinski
* Copyright: © 2012
* {@link http://cyberchimps.com/ CyberChimps LLC}
*
* Released under the terms of the GNU General Public License.
* You should have received a copy of the GNU General Public License,
* along with this software. In the main directory, see: /licensing/
* If not, see: {@link http://www.gnu.org/licenses/}.
*
* @package Eclipse.
* @since 1.0
*/
global $options, $ec_themeslug, $post, $sidebar, $content_grid; // call globals
response_sidebar_init();
get_header();
?>
<div class="container">
<div class="row">
<!--Begin @response before content sidebar hook-->
<?php response_before_content_sidebar(); ?>
<!--End @response before content sidebar hook-->
<div id="content" class="<?php echo $content_grid; ?>">
<!-- Begin @response before_search hook -->
<?php response_before_search(); ?>
<!-- End @response before_search hook -->
<!-- Begin @response search hook -->
<?php response_search(); ?>
<!-- End @response search hook -->
<!-- Begin @response after_search hook -->
<?php response_after_search(); ?>
<!-- End @response after_search hook -->
</div>
<!--Begin @response after content sidebar hook-->
<?php response_after_content_sidebar(); ?>
<!--End @response after content sidebar hook-->
</div><!--end row-->
</div><!--end container-->
<?php get_footer(); ?>