-
-
Notifications
You must be signed in to change notification settings - Fork 705
/
support.php
146 lines (116 loc) · 6.08 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php
require_once __DIR__.'/_backend/preload.php';
$page['title'] = 'Support ⋅ elementary';
$page['styles'] = array(
'styles/support.css'
);
include $template['header'];
include $template['alert'];
?>
<section class="grid">
<div class="two-thirds">
<h1>Community-Powered Support</h1>
<p>Reach out to and participate in our global community. Search for questions, ask your own, or help out by sharing your knowledge. Pick an app or component below to view its specific discussions.</p>
</div>
</section>
<div class="row apps">
<a class="app" href="https://github.com/elementary/appcenter/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/appcenter.svg" alt="AppCenter"/>
<span>AppCenter</span>
</a>
<a class="app" href="https://github.com/elementary/calculator/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/calculator.svg" alt="Calculator"/>
<span>Calculator</span>
</a>
<a class="app" href="https://github.com/elementary/calendar/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/calendar.svg" alt="Calendar"/>
<span>Calendar</span>
</a>
<a class="app" href="https://github.com/elementary/camera/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/camera.svg" alt="Camera"/>
<span>Camera</span>
</a>
<a class="app" href="https://github.com/elementary/code/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/code.svg" alt="Code"/>
<span>Code</span>
</a>
<a class="app" href="https://github.com/elementary/files/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/files.svg" alt="Files"/>
<span>Files</span>
</a>
<a class="app" href="https://github.com/elementary/mail/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/mail.svg" alt="Mail"/>
<span>Mail</span>
</a>
<a class="app" href="https://github.com/elementary/music/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/music.svg" alt="Music"/>
<span>Music</span>
</a>
<a class="app" href="https://github.com/elementary/photos/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/photos.svg" alt="Photos"/>
<span>Photos</span>
</a>
<a class="app" href="https://github.com/elementary/screenshot/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/screenshot.svg" alt="Screenshot"/>
<span>Screenshot</span>
</a>
<a class="app" href="https://github.com/elementary/shortcut-overlay/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/shortcuts.svg" alt="Shortcuts"/>
<span>Shortcuts</span>
</a>
<a class="app" href="https://github.com/elementary/tasks/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/tasks.svg" alt="Tasks"/>
<span>Tasks</span>
</a>
<a class="app" href="https://github.com/elementary/terminal/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/terminal.svg" alt="Terminal"/>
<span>Terminal</span>
</a>
<a class="app" href="https://github.com/elementary/videos/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/videos.svg" alt="Videos"/>
<span>Videos</span>
</a>
<a class="app" href="https://github.com/elementary/browser/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/web.svg" alt="Web"/>
<span>Web</span>
</a>
<a class="app" href="https://github.com/elementary/installer/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/installer.svg" alt="Installer"/>
<span>Installer</span>
</a>
<a class="app" href="https://github.com/elementary/gala/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/multitasking-view.svg" alt="Multitasking"/>
<span>Multitasking</span>
</a>
<a class="app" href="https://github.com/elementary/switchboard/discussions/categories/q-a" target="_blank" rel="noopener">
<img width="64" height="64" src="images/thirdparty-icons/apps/64/system-settings.svg" alt="System Settings"/>
<span>System Settings</span>
</a>
</div>
<section class="grid">
<div class="two-thirds">
<a href="https://github.com/orgs/elementary/discussions/categories/q-a" target="_blank" rel="noopener" class="read-more">Other Questions & Help</a>
</div>
</section>
<div class="row">
<h2>Guides & Documentation</h2>
<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>
</div>
<section class="grid">
<div class="two-thirds">
<h2>Payment & Download Support</h2>
<p>If you need help with your purchase of elementary OS—for example, downloading your copy or requesting a refund—please contact us using the details in your email receipt and a team member will contact you as soon as possible.</p>
</div>
</div>
<?php
include $template['footer'];
?>