forked from elementary/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
28 lines (23 loc) · 800 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
<?php
require_once __DIR__.'/_backend/preload.php';
$page['name'] = '404';
$page['title'] = 'Page Not Found ⋅ elementary';
include $template['header'];
include $template['alert'];
?>
<script>plausible('Error', {props: { Code: '404', Description: 'Page Not Found'}})</script>
<div class="row">
<div class="column alert">
<i class="warning fas fa-4x fa-exclamation-triangle"></i>
</div>
<div class="column alert">
<h3>The page you’re looking for can’t be found</h3>
<p>There isn’t anything located here. Check the web address for mispelled words and try again.</p>
</div>
<div class="row">
<a class="button suggested-action" href="/">Go to Home Page</a>
</div>
</div>
<?php
include $template['footer'];
?>