-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
39 lines (34 loc) · 1.32 KB
/
404.php
File metadata and controls
39 lines (34 loc) · 1.32 KB
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
/**
* General page template
*/
get_header();
?>
<section id="error-404" class="module module--hero error-404">
<div class="module__content u-container u-flex-justify-center">
<div class="card u-bg-dark-gray">
<div class="card-title">
<h1>Error</h1>
<h3>We can't find the page you're looking for.</h3>
</div>
<p>
Here are some links that may be helpful:
</p>
<ul class="useful-links">
<li>
<a href="<?php echo home_url(); ?>" class="button module-button">Home</a>
</li>
<li>
<a href="<?php echo get_permalink( get_page_by_path( 'about/faq' ) ); ?>" class="button module-button">FAQ</a>
</li>
<li>
<a href="<?php echo get_permalink( get_page_by_path( 'programs-learning/salons-at-stowe/' ) ); ?>" class="button module-button">Salons at Stowe</a>
</li>
<li>
<a href="<?php echo get_permalink( get_page_by_path( 'about/why-visit-the-stowe-center/' ) ); ?>" class="button module-button">The Stowe Center</a>
</li>
</ul>
</div>
</div>
</section>
<?php get_footer(); ?>