forked from elementary/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thank-you.php
22 lines (19 loc) · 880 Bytes
/
thank-you.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
require_once __DIR__.'/_backend/preload.php';
$page['title'] = 'Thank You for Downloading elementary OS';
$page['theme-color'] = '#3E4E54';
include $template['header'];
include $template['alert'];
?>
<section class="hero">
<div class="grid">
<div class="two-thirds">
<h1>Thank You for Downloading elementary OS</h1>
<p>For help and more info, read the <a href="<?php echo $page['lang-root'];?>/docs/installation#installation">installation guide</a>. If you purchased elementary OS, check your email for a receipt that includes your link to download elementary OS again for free.</p>
<a class="button suggested-action" href="<?php echo $page['lang-root'];?>/docs/installation#installation">Read Installation Guide</a>
</div>
</div>
</section>
<?php
include $template['footer'];
?>