-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
26 lines (21 loc) · 835 Bytes
/
404.php
File metadata and controls
26 lines (21 loc) · 835 Bytes
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
<?php
/**
* Chipmunk: 404 page
*
* @package WordPress
* @subpackage Chipmunk
*/
get_header(); ?>
<div class="l-section l-section--double">
<div class="l-container">
<div class="c-lead c-lead--center">
<h1 class="c-lead__title c-heading c-heading--h1"><?php esc_html_e('Page not found!', 'chipmunk'); ?></h1>
<p class="c-lead__content c-content c-content--type"><?php esc_html_e('Sorry, we couldn\'t find what you\'re looking for.', 'chipmunk'); ?></p>
<a href="<?php echo esc_url(home_url('/', 'relative')); ?>" class="c-lead__cta c-button c-button--primary">
<?php esc_html_e('Bring me to the frontpage', 'chipmunk'); ?>
</a>
</div>
</div>
</div>
<?php Chipmunk\Helpers::get_template_part('sections/toolbox'); ?>
<?php get_footer(); ?>