forked from elementary/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
410.php
28 lines (23 loc) · 895 Bytes
/
410.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['title'] = 'Download Link Expired ⋅ elementary';
include $template['header'];
include $template['alert'];
?>
<script>window.statusCode = '410: Download Link Expired'</script>
<script src="scripts/error.js" async></script>
<div class="row">
<div class="column alert">
<i class="warning fa fa-clock-o"></i>
</div>
<div class="column alert">
<h3>Whoops! That link has expired.</h3>
<p>If you're trying to download elementary OS, please head back to the home page. If you were looking for something else, feel free to <a href="https://github.com/elementary/website/issues/new">file an issue on our GitHub</a>.</p>
</div>
<div class="row">
<a class="button suggested-action" href="/">Go to Home Page</a>
</div>
</div>
<?php
include $template['footer'];
?>