forked from elementary/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thank-you.php
29 lines (26 loc) · 1.12 KB
/
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
23
24
25
26
27
28
29
<?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
<?php
// Embed the SVG to fix scaling in WebKit 1.x,
// while preserving CSS options for the image.
include __DIR__.'/images/logotype-os.svg';
?>
</h1>
<p>For help and more info, read the <a href="<?php echo $sitewide['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 $sitewide['lang-root'];?>/docs/installation#installation">Read Installation Guide</a>
</div>
</div>
</section>
<?php
include $template['footer'];
?>