-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
executable file
·36 lines (31 loc) · 1010 Bytes
/
search.php
File metadata and controls
executable file
·36 lines (31 loc) · 1010 Bytes
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
<?php theme_include('header'); ?>
<div class="page-header">
<h1>You searched for “<?php echo search_term(); ?>”.</h1>
</div>
<?php if (has_search_results()) : ?>
<ul class="list-unstyled">
<?php while (search_results()) : ?>
<li>
<article>
<h2>
<a href="<?php echo article_url(); ?>" title="<?php echo article_title(); ?>">
<span class="glyphicon glyphicon-chevron-right" style="font-size:smaller"></span>
<?php echo article_title(); ?>
</a>
</h2>
</article>
</li>
<?php endwhile; ?>
</ul>
<?php if (has_pagination()) : ?>
<nav>
<ul class="pager">
<li class="previous"><?php echo search_prev(); ?></li>
<li class="next"><?php echo search_next(); ?></li>
</ul>
</nav>
<?php endif; ?>
<?php else: ?>
<p>Unfortunately, there are no results for “<?php echo search_term(); ?>”.</p>
<?php endif; ?>
<?php theme_include('footer'); ?>