-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·29 lines (24 loc) · 864 Bytes
/
404.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
the_post();
get_header();
?>
<section class="content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="filters">
<form action="<?php echo site_url( '/' ); ?>" method="get">
<label for="filter_search">
<h3>Try searching our site below</h3>
</label>
<div>
<input type="text" name="s" id="filter_search" value="<?php echo get_search_query(); ?>">
<button type="submit" class="submit"><span>Search</span> <i class="fa fa-chevron-right"></i></button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>