-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.php
26 lines (20 loc) · 813 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
<!DOCTYPE html>
<html <?php language_attributes() ?>>
<meta charset="<?php bloginfo( 'charset' ) ?>">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head() ?>
</html>
<body <?php body_class( 'page-404-body' ) ?>>
<main class="page-404-content">
<div class="page-404-content__pictogram">
:(
</div>
<div class="page-404-content__text">
<h1><?php _e( 'Oops! No page here', 'toastmasterspl' ); ?></h1>
<p><?php _e( "We couldn't find anything at this location. Maybe it went missing, or maybe it was never here in the first place. Try <a href=\"" . home_url() . "\">starting from home</a>.", 'toastmasterspl' ); ?></p>
</div>
</main>
<?php wp_footer() ?>
</body>
</html>