-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsearch.php
executable file
·49 lines (42 loc) · 1.4 KB
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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, $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(); ?>