forked from mindctrl/alienship
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
48 lines (36 loc) · 1.67 KB
/
Copy pathsearch.php
File metadata and controls
48 lines (36 loc) · 1.67 KB
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
<?php
/**
* The template for displaying Search Results pages.
*
* @package Alien Ship
* @since Alien Ship 0.1
*/
get_header(); ?>
<section id="primary">
<div class="row-fluid">
<?php do_action( 'alienship_content_before' ); ?>
<div id="content" role="main" class="<?php echo apply_filters( 'alienship_content_container_class', 'span9' ); ?>">
<?php if ( have_posts() ) : ?>
<header id="search-results-header" class="page-header">
<h1 id="search-results-title" class="page-title"><?php printf( __( 'Search Results for: %s', 'alienship' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
</header>
<?php if ( of_get_option('alienship_content_nav_above') ) { alienship_content_nav( 'nav-above' ); } // display content nav above posts? ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php do_action( 'alienship_loop_before' ); ?>
<?php $format = get_post_format();
if ( false === $format )
$format = 'standard';
get_template_part( '/inc/parts/content', $format ); ?>
<?php do_action( 'alienship_loop_after' ); ?>
<?php endwhile; ?>
<?php if ( of_get_option('alienship_content_nav_below',1) ) { alienship_content_nav( 'nav-below' ); } // display content nav below posts? ?>
<?php else : ?>
<?php /* No results */ get_template_part( '/inc/parts/content', 'none' ); ?>
<?php endif; ?>
<?php do_action( 'alienship_content_after' ); ?>
</div><!-- #content -->
<?php get_sidebar(); ?>
</div><!-- .row-fluid -->
</section><!-- #primary -->
<?php get_footer(); ?>