forked from elementary/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
support.php
88 lines (72 loc) · 3.68 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
88
<?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'];
?>
<div class="row">
<h1>Get support for <?php include("./images/logotype.svg"); ?></h1>
</div>
<div class="row apps">
<a class="app" href="https://answers.launchpad.net/maya" target="_blank">
<img width="64" height="64" src="images/support/office-calendar.svg" />
<span>Calendar</span>
</a>
<a class="app" href="https://answers.launchpad.net/snap-elementary" target="_blank">
<img width="64" height="64" src="images/support/accessories-camera.svg" />
<span>Camera</span>
</a>
<a class="app" href="https://answers.launchpad.net/pantheon-files" target="_blank">
<img width="64" height="64" src="images/support/system-file-manager.svg" />
<span>Files</span>
</a>
<a class="app" href="https://answers.launchpad.net/ubuntu/+source/geary" target="_blank">
<img width="64" height="64" src="images/support/internet-mail.svg" />
<span data-l10n-off>Geary</span>
</a>
<a class="app" href="https://answers.launchpad.net/midori" target="_blank">
<img width="64" height="64" src="images/support/midori.svg" />
<span data-l10n-off>Midori</span>
</a>
<a class="app" href="https://answers.launchpad.net/noise" target="_blank">
<img width="64" height="64" src="images/support/multimedia-audio-player.svg" />
<span>Music</span>
</a>
<a class="app" href="https://answers.launchpad.net/pantheon-photos" target="_blank">
<img width="64" height="64" src="images/support/multimedia-photo-manager.svg" />
<span>Photos</span>
</a>
<a class="app" href="https://answers.launchpad.net/scratch" target="_blank">
<img width="64" height="64" src="images/support/accessories-text-editor.svg" />
<span data-l10n-off>Scratch</span>
</a>
<a class="app" href="https://answers.launchpad.net/switchboard" target="_blank">
<img width="64" height="64" src="images/support/preferences-desktop.svg" />
<span>System Settings</span>
</a>
<a class="app" href="https://answers.launchpad.net/audience" target="_blank">
<img width="64" height="64" src="images/support/multimedia-video-player.svg" />
<span>Videos</span>
</a>
</div>
<div class="row">
<a class="column half" href="https://answers.launchpad.net/elementary/+faqs" target="_blank">
<h3 class="read-more"><i class="fa fa-question-circle"></i> FAQ</h3>
<p>Has your question been asked already? Check out answers to some of the most common questions we get.</p>
</a>
<a class="column half" href="/docs/installation">
<h3><i class="fa fa-download"></i> Installation</h3>
<p>Get help installing elementary OS on your computer by following our step-by-step guide.</p>
</a>
<a class="column half" href="https://plus.google.com/communities/104613975513761463450" target="_blank">
<h3 class="read-more" data-l10n-off><i class="fa fa-google-plus-square"></i> Google+</h3>
<p>Communicate with other elementary OS users in our Google+ community. Find crowd-sourced support, screenshots, the latest news, and more.</p>
</a>
<a class="column half" href="http://www.reddit.com/r/elementaryos/" target="_blank">
<h3 class="read-more" data-l10n-off><i class="fa fa-reddit"></i> reddit</h3>
<p>Discuss elementary OS with other fans and followers in our official subreddit. Ask the community for help or just chat about the OS.</p>
</a>
</div>
<?php
include $template['footer'];
?>