-
Notifications
You must be signed in to change notification settings - Fork 3
/
search.php
35 lines (34 loc) · 963 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
35
<?php
/**
* @package Thz Framework
* @author Themezly
* @websites http://www.themezly.com | http://www.youjoomla.com | http://www.yjsimplegrid.com
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // No direct access
}
/**
* The template for displaying search page.
*/
get_header();
?>
<div id="<?php thz_set_holder() ?>" class="holders">
<?php if (thz_show_left_content_right ()): ?>
<aside id="leftblock" class="thz-block"<?php thz_sdata('sidebar')?>>
<div class="thz-block-spacer">
<div class="thz-sidebars">
<?php thz_load_sidebar('left') ?>
</div>
</div>
</aside>
<?php endif; ?>
<main id="contentblock" class="thz-block thz-block-main"<?php thz_sdata('search'); ?>>
<div class="thz-block-spacer">
<div class="thz-main-in">
<?php get_template_part( 'template-parts/search/search','layout'); ?>
</div>
</div>
</main><!-- #contentblock -->
<?php get_sidebar(); ?>
</div><!-- .holders -->
<?php get_footer(); ?>