-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
30 lines (29 loc) · 957 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
30
<?php
get_header();
?>
<div id="main-wrapper" class="error404-section">
<!-- Content Section -->
<section id="error404-content">
<div class="container-max">
<div class="content-wrapper">
<h1>Oops!</h1>
<h2>404 Page Not Found</h2>
<div class="error-details">
Sorry, an error has occured, Requested page not found!
</div>
<div class="error-actions">
<a href="<?= get_home_url(); ?> ">
<div class="arrows">
<span class="green-arrow"></span>
<span class="white-arrow"></span>
</div>
<p>Take Me Home</p>
</a>
</div>
</div>
</div>
</section>
</div>
<?php
get_footer();
?>