-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
60 lines (39 loc) · 1.4 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
52
53
54
55
56
57
58
59
60
<?php
/**
* Name: Origines WordPress Theme
* GitHub URI: https://github.com/haroldparis/origines
* Description: Origines template for search.
* Author: Harold Paris
* Twitter: @haroldparis
* Author website: http://www.tribeleadr.com/
*/
?>
<?php get_header(); ?>
<div id="o-wrapper" class="container">
<div class="row">
<div id="o-main" class="span9">
<?php if ( function_exists('origines_bread') ) origines_bread(); ?>
<?php if ( have_posts() ) : ?>
<header class="o-title-header page-header">
<h1 class="o-title">
<?php printf( __( 'Search Results for: %s', 'origines' ), get_search_query() ); ?>
</h1> <!-- /.o-title -->
</header> <!-- /.o-title-header -->
<div id="o-content" itemprop="MainContentofPage">
<?php get_template_part( 'loop' ); ?>
</div> <!-- /#o-content -->
<?php else : ?>
<header id="o-title-header" class="page-header">
<h1 id="o-title">
<?php _e( 'Nothing Found', 'origines' ); ?>
</h1> <!-- /#o-title -->
</header> <!-- /#o-title-header -->
<div id="o-content" itemprop="MainContentofPage">
<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'origines' ); ?></p>
</div> <!-- /#o-content -->
<?php endif; ?>
</div><!-- /#o-main -->
<?php get_sidebar(); ?>
</div><!-- /.row -->
</div><!-- /#o-wrapper -->
<?php get_footer(); ?>