-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
55 lines (50 loc) · 2.33 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- SSI (Server Side Includes) -->
<!--#include virtual="/meta${REQUEST_URI}" -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Bannergress" />
<link rel="preconnect" href="%VITE_API_BASE_URL%">
<link rel="preconnect" href="%VITE_KEYCLOAK_URL%">
<!-- generics favicons -->
<link rel="icon" href="/favicons/favicon-32.png" sizes="32x32">
<link rel="icon" href="/favicons/favicon-57.png" sizes="57x57">
<link rel="icon" href="/favicons/favicon-76.png" sizes="76x76">
<link rel="icon" href="/favicons/favicon-96.png" sizes="96x96">
<link rel="icon" href="/favicons/favicon-128.png" sizes="128x128">
<link rel="icon" href="/favicons/favicon-192.png" sizes="192x192">
<link rel="icon" href="/favicons/favicon-228.png" sizes="228x228">
<!-- Android favicons -->
<link rel="shortcut icon" sizes="196x196" href="/favicons/favicon-196.png">
<link rel="shortcut icon" sizes="512x512" href="/favicons/favicon-512.png">
<!-- iOS favicons -->
<link rel="apple-touch-icon" href="/favicons/favicon-120.png" sizes="120x120">
<link rel="apple-touch-icon" href="/favicons/favicon-152.png" sizes="152x152">
<link rel="apple-touch-icon" href="/favicons/favicon-180.png" sizes="180x180">
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/>
<title>Bannergress</title>
<script>
// When promises are not supported, show the legacy notice
function showLegacyNotice() {
var elem = document.getElementById('legacy_browser');
if(elem) elem.style.display = 'block';
}
if(!window.Promise){
setTimeout(showLegacyNotice, 500)
}
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="legacy_browser" style="display:none;">Internet Explorer and other legacy browsers are not supported.</div>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>