forked from nextcloud/nextcloud-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
44 lines (39 loc) · 923 Bytes
/
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
<?php
/*
* The template for displaying search results.
*/
get_header();
?>
<div class="wrapper">
<section class="single-hero-section" style="background-color: #1cafff;">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h1><?php _e('Search results for: '); ?><?php echo '<green>' . get_search_query() . '</green>'; ?></h1>
</div>
</div>
</div>
</section>
<section class="blog-section">
<div class="container">
<div class="row">
<?php
if (have_posts()) {
while (have_posts()) {
the_post();
get_template_part('inc/blog_loop_single');
}
} else {
echo '<div class="col-12">';
echo '<div class="not-found">';
echo '<h3>No search results for: ' . get_search_query() . '</h3>';
echo '</div>';
echo '</div>';
}
?>
</div>
</div>
</section>
</div>
<?php get_footer(); ?>