-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.84 KB
/
Copy pathindex.html
File metadata and controls
47 lines (44 loc) · 1.84 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#f1efe7" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#0b0c0d" media="(prefers-color-scheme: dark)" />
<style>
html, body { background: #f1efe7; }
@media (prefers-color-scheme: dark) {
html, body { background: #0b0c0d; }
}
</style>
<meta
name="description"
content="ArchLinuxStudio creates open tutorials and free software for a more private, capable, and user-controlled digital life."
/>
<meta property="og:url" content="https://archlinuxstudio.github.io" />
<meta property="og:type" content="website" />
<meta property="og:title" content="ArchLinuxStudio Official Website" />
<meta
property="og:description"
content="Open knowledge and free software for a user-owned digital life."
/>
<meta property="og:site_name" content="ArchLinuxStudio" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:domain" content="archlinuxstudio.github.io" />
<meta property="twitter:url" content="https://archlinuxstudio.github.io" />
<meta name="twitter:title" content="ArchLinuxStudio Official Website" />
<meta
name="twitter:description"
content="Open knowledge and free software for a user-owned digital life."
/>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
<title>ArchLinuxStudio - Technology should be user-owned</title>
</head>
<body>
<noscript>You need to enable JavaScript to view this website.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>