-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
executable file
·27 lines (23 loc) · 795 Bytes
/
search.php
File metadata and controls
executable file
·27 lines (23 loc) · 795 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
<?php
get_header();
?>
<section class="content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( is_single() ) : ?>
<?php the_content(); ?>
<?php else : ?>
<h3><?php the_date(); ?></h3>
<h1><a href="<?php the_permalink(); ?>"><?php Fervor::the_title(); ?></a></h1>
<?php the_excerpt(); ?>
<?php endif; ?>
<?php endwhile; else : ?>
<h1>Sorry, there are no posts.</h1>
<?php endif; ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>