forked from adampatterson/axe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
executable file
·22 lines (17 loc) · 748 Bytes
/
404.php
File metadata and controls
executable file
·22 lines (17 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php include(get_template_part_acf('templates/partials/header')); ?>
<div class="wrapper">
<div class="container">
<div class="row">
<div class="col-md-12">
<section id="post-404" <?php post_class(); ?>>
<article>
<h1>404 Not Found</h1>
<p class="lead">It seems we can’t find what you’re looking for. Perhaps searching can help.</p>
<?php get_search_form(); ?>
</article>
</section>
</div>
</div>
</div>
</div>
<?php include(get_template_part_acf('templates/partials/footer'));