-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsearch.php
executable file
·34 lines (31 loc) · 933 Bytes
/
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
<?php get_header(); ?>
<?php
$template = 'search';
?>
<section id="main">
<?php echo get_my_search_form(); ?>
<div class="main-container">
<div class="row">
<div class="twelve columns cat-title">
<?php
if( have_posts () ){
?>
<h2>
<span>
<?php _e( 'Search results: ' , 'cosmotheme' ); ?>
</span>
</h2>
<?php
}else{
?><h2 ><span><?php _e( 'Sorry, no posts found' , 'cosmotheme' ); ?></h2></span><?php
}
?>
</div>
</div>
<?php
$layout = new LBSidebarResizer( 'search' );
$layout -> render_frontend();
?>
</div>
</section>
<?php get_footer(); ?>