-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
21 lines (19 loc) · 680 Bytes
/
404.php
File metadata and controls
21 lines (19 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
defined('ABSPATH') || exit;
get_header();
?>
<main>
<section class="py-xxl">
<div class="container px-md text-center py-xxl">
<h1 class="mb-sm">OOPS! that page can’t be found.</h1>
<h4 class="mb-xl normal-case">Return to the home page or check our blog below.</h4>
<a href="/" title="Back To Home" class="!no-underline mx-auto">
<button type="button" class="btn btn-primary w-full max-w-[290px] h-[57px] m-auto">
<i class="icon-[famicons--home] text-[24px] mr-[12px]"></i> Back To Home
</button>
</a>
</div>
</section>
</main>
<?php
get_footer();