-
Notifications
You must be signed in to change notification settings - Fork 472
Expand file tree
/
Copy pathsearch.php
More file actions
executable file
·32 lines (17 loc) · 803 Bytes
/
search.php
File metadata and controls
executable file
·32 lines (17 loc) · 803 Bytes
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
<?php get_header() ?>
<div id="content" class="mt15 container min-height-container">
<?php get_template_part('templates/box', 'global-top') ?>
<?php echo pk_breadcrumbs() ?>
<div class="row row-cols-1">
<div class="col-lg-<?php pk_hide_sidebar_out('12','8') ?> col-md-12 <?php pk_open_box_animated('animated fadeInLeft') ?> ">
<?php if(have_posts()): ?>
<?php get_template_part('templates/module','posts') ?>
<?php else:?>
<?php get_template_part('templates/content','none') ?>
<?php endif;?>
</div>
<?php get_sidebar() ?>
</div>
<?php get_template_part('templates/box', 'global-bottom') ?>
</div>
<?php get_footer() ?>