-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
executable file
·29 lines (25 loc) · 806 Bytes
/
404.php
File metadata and controls
executable file
·29 lines (25 loc) · 806 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
29
<?php
/**
* The template for displaying 404 page not found
*
*/
get_header();
?>
<div id="content">
<div class="d-flex p-4 p-md-5 align-items-center bg-gov-green bg-gradient" style="height: 12vh; min-height: 100px;">
<div class="container-lg px-0 px-md-3 py-4 py-md-5">
<h1 class="mb-0 text-white">Page not found</h1>
</div>
</div>
<div class="bg-secondary-subtle">
<div class="container-lg p-lg-5 p-4 bg-light-subtle">
<p class="fs-4 mb-5">Sorry, we can't find that page.</p>
<div style="max-width: 600px;">
<?php get_template_part('template-parts/sidebar/taxonomies') ?>
</div>
<?php get_template_part('template-parts/needhelp') ?>
</div>
</div>
</div>
<?php
get_footer();