-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
20 lines (20 loc) · 858 Bytes
/
search.php
File metadata and controls
20 lines (20 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php get_header(); ?>
<div class="row">
<div class="col-sm-8 blog-main">
<?php
if (have_posts()) : while (have_posts()) : the_post();
get_template_part('content', get_post_format());
endwhile;
?>
<div class="pagination clearfix">
<div class="nav-previous right"><?php next_posts_link( 'Older posts »' ); ?></div>
<div class="nav-next left"><?php previous_posts_link( '« Newer posts' ); ?></div>
</div>
<hr />
<?php else : ?>
<p class="no-search-results"><b>No results found for your search term. <a href="https://news.climatecolab.org">Return to the news page.</a></b></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>