-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
39 lines (34 loc) · 897 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
31
32
33
34
35
36
37
38
39
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package WordPress
* @subpackage AG_Eyecare
* @since 1.0.0
*/
get_header();
?>
<div class="main-container">
<section class="height-100 bg--primary">
<div class="container pos-vertical-center">
<div class="row">
<div class="col-sm-12 text-center">
<h2>
<i class="icon--lg icon-lifesaver"></i>
</h2>
<h1 class="page-title"><?php _e( 'Oops! That page can’t be found.', 'ageyecare' ); ?></h1>
<p>
The page you were attempting to visit doesn't exist.
<br> What now?
<a class="link-underline" href="/">Go back home</a> or
<a class="link-underline" href="#">Contact Us</a> if you think this might be a mistake.
</p>
</div>
</div>
</div>
</section>
</div>
<?php
get_footer();