-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
61 lines (56 loc) · 2.49 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
56
57
58
59
60
61
<!--
Copyright 2021-present Etherna Sagl
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/images/icon-256.png" />
<link rel="apple-touch-icon" href="/images/icon-192.png" />
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
<link rel="alternate icon" href="/images/icon-256.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="%VITE_APP_INDEX_URL%" />
<link rel="preconnect" href="%VITE_APP_GATEWAY_URL%" />
<link rel="preconnect" href="%VITE_APP_SSO_URL%" />
<link rel="preconnect" href="%VITE_APP_MATOMO_URL%" />
<meta http-equiv="Cache-control" content="public, max-age=3600, must-revalidate" />
<meta http-equiv="Expires" content="public, max-age=3600, must-revalidate" />
<meta http-equiv="Last-Modified" content="public, max-age=3600, must-revalidate" />
<meta name="google-site-verification" content="4MV0zRqX0r9mX0e4jz5j-D0h5_N6oPQNWEh1fON5M3A" />
<title>Etherna | Web3.0 Video Explorer</title>
<script>
/// Define basepath
var path = window.location.pathname
var bzzPattern = /\/bzz\/([^/]+)/
var basename = bzzPattern.test(path) ? path.match(bzzPattern)[0] : ""
window.__dynamic_base__ = basename
</script>
</head>
<body class="">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div id="root_legacy"></div>
<div
class="fixed inset-x-0 top-0 z-200 p-4 font-semibold"
id="unsupported-browser-message"
style="display: none; background-color: #ef4444; color: white"
>
<span>
You are using an old unsupported browser. To keep using this app please download the latest
version of
</span>
<span>Chrome, Safari, Firefox, Brave or any other modern browser.</span>
</div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>