-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
28 lines (27 loc) · 739 Bytes
/
Copy path404.php
File metadata and controls
28 lines (27 loc) · 739 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
<?php
get_header();
?>
<section class="titlesection">
<div class="">
<div class="container">
<h1><?php the_title(); ?></h1>
</div>
</div>
</section>
<section class="container">
<div class="row">
<div class="text-center m-auto p-5">
<h1>Page Not Found</h1>
<?php
get_search_form();
?>
<!-- <form id="searchform" action="<?php echo home_url('/'); ?>" method="get">
<input type="search" class="Search" name="search" placeholder="<?php the_search_query(); ?>">
<input type="submit" class="SearchSubmit" value="Search">
</form> -->
</div>
</div>
</section>
<?php
get_footer();
?>