-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsearch.php
More file actions
33 lines (23 loc) · 768 Bytes
/
search.php
File metadata and controls
33 lines (23 loc) · 768 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
33
<?php get_header(); ?>
<!-- Head Section -->
<section class="small-section bg-gray-lighter">
<div class="relative container align-left">
<div class="row">
<div class="col-md-12 content-title">
<h1 class="hs-line-11 font-alt mb-20 mb-xs-0"><?php printf( __( 'SEARCH: %s', 'arkakapi' ), '<span>' . esc_html( get_search_query() ) . '</span>' ); ?></h1>
</div>
</div>
</div>
</section>
<!-- End Head Section -->
<!-- Section -->
<section class="page-section">
<div class="container relative">
<div class="row">
<?php get_template_part( 'template-parts/content', 'list' ); ?>
<?php get_sidebar(); ?>
</div>
</div>
</section>
<!-- End Section -->
<?php get_footer(); ?>