forked from elementary/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
support.php
87 lines (72 loc) · 3.4 KB
/
support.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
include '_templates/sitewide.php';
$page['title'] = 'Support ⋅ elementary';
$page['scripts'] = '<link rel="stylesheet" type="text/css" media="all" href="styles/support.css">';
include $template['header'];
include $template['alert'];
?>
<div class="row">
<h1>Get support for <?php include("./images/logotype.svg"); ?></h1>
</div>
<div class="row apps">
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/maya" target="_blank">
<img width="64" height="64" src="images/icons/office-calendar.svg" />
<span>Calendar</span>
</a>
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/snap" target="_blank">
<img width="64" height="64" src="images/icons/accessories-camera.svg" />
<span>Camera</span>
</a>
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/pantheon-files" target="_blank">
<img width="64" height="64" src="images/icons/system-file-manager.svg" />
<span>Files</span>
</a>
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/geary" target="_blank">
<img width="64" height="64" src="images/icons/internet-mail.svg" />
<span data-l10n-off>Geary</span>
</a>
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/midori" target="_blank">
<img width="64" height="64" src="images/icons/midori.svg" />
<span data-l10n-off>Midori</span>
</a>
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/noise" target="_blank">
<img width="64" height="64" src="images/icons/multimedia-audio-player.svg" />
<span>Music</span>
</a>
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/photos" target="_blank">
<img width="64" height="64" src="images/icons/multimedia-photo-manager.svg" />
<span>Photos</span>
</a>
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/scratch" target="_blank">
<img width="64" height="64" src="images/icons/accessories-text-editor.svg" />
<span data-l10n-off>Scratch</span>
</a>
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/settings" target="_blank">
<img width="64" height="64" src="images/icons/preferences-desktop.svg" />
<span>System Settings</span>
</a>
<a class="app" href="https://elementaryos.stackexchange.com/questions/tagged/videos" target="_blank">
<img width="64" height="64" src="images/icons/multimedia-video-player.svg" />
<span>Videos</span>
</a>
</div>
<div class="row">
<a class="column third" href="/docs/installation">
<i class="fa fa-download"></i>
<h3>Installation</h3>
<p>Get help installing elementary OS with our step-by-step guide.</p>
</a>
<a class="column third" href="/docs/learning-the-basics">
<i class="fa fa-book"></i>
<h3>Learning the Basics</h3>
<p>Walk through the desktop, multi-tasking, keyboard shortcuts and more.</p>
</a>
<a class="column third" href="https://elementaryos.stackexchange.com" target="_blank">
<i class="fa fa-stack-exchange"></i>
<h3 class="read-more">StackExchange</h3>
<p>Check out answers to some of the most common questions we get.</p>
</a>
</div>
<?php
include $template['footer'];
?>