forked from elementary/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
410.php
26 lines (23 loc) · 829 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
<?php
include '_templates/sitewide.php';
$page['title'] = 'Download Link Expired ⋅ elementary';
include $template['header'];
?>
<script>
ga('send', 'event', '410: Download Link Expired', window.location.host);
</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/mvp/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'];
?>