-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path404.php
30 lines (27 loc) · 853 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();
?>
<main id="site-content" class="not-found">
<picture>
<source srcset="<?=$img_folder?>404.svg" type="image/svg+xml">
<img class="not-found__image" alt="?"
srcset="<?=$img_folder?>404.png 1x,
<?=$img_folder?>404@2x.png 2x"
src="<?=$img_folder?>404.png">
</picture>
<h1 class="not-found__title">
<?php echo esc_attr_x('You’ve hit a 404, which means...', 'title 404.php', 'svid-theme-domain'); ?>
</h1>
<h2 class="not-found__sub-title">
<?php echo esc_attr_x('we have no ID where that page went', 'sub-title 404.php', 'svid-theme-domain'); ?>
</h2>
<p>
<?php echo esc_attr_x('It seems this page does not exist. Try the menu or the sitemap below.', '404.php action suggestion', 'svid-theme-domain'); ?>
</p>
</main>
<?php
get_footer();
?>
<script type="text/javascript">
notFound(jQuery);
</script>