-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (28 loc) · 1.1 KB
/
index.html
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
<!doctype html>
<html class="h-100" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Available Applications | Turris</title>
<link rel="icon" type="image/png" id="favicon" />
<meta name="robots" content="noindex, nofollow" />
<meta name="theme-color" content="#ffffff" />
<meta
name="description"
content="Main Turris OS disambiguation for web applications"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000" />
<meta name="msapplication-TileColor" content="#000000" />
<link rel="manifest" href="/manifest.json" />
</head>
<body class="h-100 bg-body-tertiary">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root" class="d-flex flex-column h-100"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>