-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.39 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Apollo Installer</title>
<meta name="description" content="Flash your Apollo Automation device from the browser.">
<link rel="icon" href="assets/brand/favicon.png">
<script>
(function () {
try {
var t = localStorage.getItem('theme');
if (t === 'dark' || (!t && matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.setAttribute('data-theme', 'dark');
}
} catch (e) {}
}());
</script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="site-header">
<a class="brand" href="#/">
<img src="assets/brand/a-mark.png" alt="" width="28" height="28">
<span>Apollo Installer</span>
</a>
<nav>
<a href="https://wiki.apolloautomation.com">Wiki</a>
<a href="https://apolloautomation.com">Shop</a>
<a href="https://discord.apolloautomation.com/">Discord</a>
<a href="https://forum.apolloautomation.com/">Forum</a>
<button id="theme-toggle" class="theme-btn" title="Toggle theme" aria-label="Toggle theme"><span class="theme-mode" aria-hidden="true"></span></button>
</nav>
</header>
<main id="app"><p class="loading">Loading devices…</p></main>
<script type="module" src="js/app.js"></script>
</body>
</html>