-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2.45 KB
/
Copy pathindex.html
File metadata and controls
53 lines (53 loc) · 2.45 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
48
49
50
51
52
53
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DZSL — DayZ Server Browser for Linux</title>
<meta
name="description"
content="Native DayZ server browser and mod manager for Linux. Browse community servers, manage Workshop mods, and launch straight into the game — no Windows launcher needed."
/>
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="canonical" href="https://dayzlinux.com/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="DZSL" />
<meta property="og:title" content="DZSL — DayZ Server Browser for Linux" />
<meta
property="og:description"
content="Native DayZ server browser and mod manager for Linux. Browse community servers, manage Workshop mods, and launch straight into the game."
/>
<meta property="og:url" content="https://dayzlinux.com/" />
<meta property="og:image" content="https://dayzlinux.com/dzsl-bg-moon-realistic.webp" />
<meta property="og:image:width" content="2560" />
<meta property="og:image:height" content="1440" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="DZSL — DayZ Server Browser for Linux" />
<meta
name="twitter:description"
content="Native DayZ server browser and mod manager for Linux. Browse community servers, manage Workshop mods, and launch straight into the game."
/>
<meta name="twitter:image" content="https://dayzlinux.com/dzsl-bg-moon-realistic.webp" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Anton&family=Black+Ops+One&family=Oswald:wght@400;600&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script>
// Apply theme before paint to avoid a flash. Explicit choice wins;
// otherwise follow the OS setting (prefers-color-scheme).
try {
var t = localStorage.getItem("theme");
if (t !== "light" && t !== "dark") {
t = matchMedia("(prefers-color-scheme: light)").matches ? "light" : "dark";
}
document.documentElement.dataset.theme = t;
} catch (e) {}
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>