-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
36 lines (36 loc) · 1.1 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
<?php get_header(); ?>
<main id="main">
<div class="ucla campus">
<?php if ( have_posts() ) : ?>
<header class="header">
<h1 class="entry-title">
<?php printf( esc_html__( 'Search Results for: %s', 'ucla' ), get_search_query() ); ?>
</h1>
</header>
<div class="ucla campus">
<div class="col span_9_of_12">
<?php
while ( have_posts() ) : the_post();
include 'templates/entry-content.php';
endwhile;
get_template_part( 'nav', 'below' );
else : ?>
<article id="post-0" class="post no-results not-found">
<header class="header">
<h1 class="entry-title">
<?php esc_html_e( 'Nothing Found', 'ucla' ); ?></h1>
</header>
<div class="entry-content">
<p>
<?php esc_html_e( 'Sorry, nothing matched your search. Please try again.', 'ucla' ); ?>
</p>
<?php get_search_form(); ?>
</div>
</article>
<?php endif; ?>
</div>
</div>
</div>
</main>
<?php get_sidebar(); ?>
<?php get_footer(); ?>