forked from SimonPadbury/b4st
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
34 lines (24 loc) · 841 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
/*
* Generally, Anything inside .row>.col-sm- is a 'Fundamental Content Block',
and can be re-organized from 3 rows, into 1 .row>.col-sm
*/
get_header(); ?>
<div id="page" class="container-responsive">
<!-- row & col-sm *could* be removed.. mayyyybe-->
<div class="row">
<div class="col-sm">
<div id="content" role="main">
<header class="page-header ">
<h1 class='page-title'><?php _e('Search Results for', 'b4st'); ?> “<?php the_search_query(); ?>”</h1>
</header>
<?php get_template_part('loops/search-results'); ?>
</div><!-- /#content -->
</div><!-- /.row -->
<div class="row">
<?php
//sidebar is wrapped in col-sm-12
get_sidebar(); ?>
</div><!-- /.row -->
</div><!-- /.container-responsive -->
<?php get_footer(); ?>