-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsearch.php
35 lines (18 loc) · 900 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
<!doctype html>
<?php get_header(); ?>
<body <?php body_class(); ?> itemscope itemtype="http://schema.org/WebPage">
<?php get_template_part( 'template-parts/site-header' ); ?>
<main role="main" itemprop="mainContentOfPage" itemscope itemtype="http://schema.org/Blog">
<h1><span><?php _e( 'Search Results for:', 'barebonestheme' ); ?></span> <?php echo esc_attr(get_search_query()); ?></h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part( 'post-formats/format', get_post_format() ); ?>
<?php endwhile; ?>
<?php barebones_page_navi(); ?>
<?php else : ?>
<?php get_template_part( 'template-parts/missing-content' ); ?>
<?php endif; ?>
</main>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</body>
</html> <!-- end of site. what a ride! -->