-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
29 lines (27 loc) · 1.11 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
<?php theme_include('header') ?>
<section class="main" role="main">
<div class="page">
<h2 class="page-title">You searched for “<?= search_term() ?>”.</h2>
<?php if (has_search_results()): ?>
<ul class="list-unstyled">
<?php while(search_results()): ?>
<li class="media">
<article class="media-body">
<h3><a href="<?= search_item_url() ?>"><?= search_item_title() ?></a></h3>
</article>
</li>
<?php endwhile ?>
</ul>
<?php if (has_search_pagination()): ?>
<nav class="pagination">
<?php echo posts_prev() ?>
<?php echo posts_next() ?>
</nav>
<?php endif ?>
<?php else: ?>
<p class="lead">Unfortunately, there's no results for “<?= search_term() ?>”.</p>
<p class="lead">Did you spell everything correctly?</p>
<?php endif ?>
</div>
</section>
<?php theme_include('footer') ?>