forked from lucasr/wp-lucasr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
51 lines (34 loc) · 1.1 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* The template file for search results.
*
* @package WordPress
* @subpackage lucasr
*/
get_header();?>
<div class="row-fluid">
<div class="span12">
<?php if ( have_posts() ) : ?>
<header class="entry-header">
<hgroup>
<h1 class="archive-title"><?php printf( __( 'Search: %s', 'lucasr' ), get_search_query() ); ?></h1>
</hgroup>
</header>
<ul class="archive thumbnails">
<?php while ( have_posts() ) : the_post(); ?>
<li class="span6">
<div class="thumbnail">
<?php get_template_part( 'content', 'list' ); ?>
</div>
</li>
<?php endwhile; ?>
</ul>
<div class="pagination">
<?php lucasr_the_pagination_links(); ?>
</div>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; // end have_posts() check ?>
</div> <!-- span12 -->
</div> <!-- row-fluid -->
<?php get_footer(); ?>