forked from ArrayHQ/publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
24 lines (20 loc) · 688 Bytes
/
search.php
File metadata and controls
24 lines (20 loc) · 688 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
<?php
/**
* The template for displaying search results.
*
* @package Publisher
* @since Publisher 1.0
*/
get_header(); ?>
<div id="main" class="site-main blocks-page clearfix">
<div class="archive-title">
<h1><?php printf( __( 'Search Results for: %s', 'publisher' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
</div><!-- .archive-title -->
<div id="primary">
<div id="content" class="site-content" role="main">
<!-- Grab Blocks Template -->
<?php get_template_part( 'templates/template-blocks' ); ?>
</div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
</div><!-- #main .site-main -->
<?php get_footer(); ?>