-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
31 lines (27 loc) · 870 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
<?php
/*
Template Name: Search Page
*/
get_header(); ?>
<!-- content -->
<div class="content">
<!-- portfolio work & blog -->
<?php get_sidebar(); ?>
<section class="three-fourths blog-page">
<section class="blog">
<header><h2><?php printf( __( 'Search Results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' ); ?></h2></header>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?>>
<header><h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1></header>
<section class="meta"><?php entry_meta(); ?></section>
<?php the_excerpt(); ?>
</article>
<?php endwhile; ?>
<?php else : ?>
<p>Sorry, but nothing matched your search criteria.</p>
<?php endif; ?>
</section>
</section>
<div class="clearfix"></div>
</div>
<?php get_footer(); ?>