-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.gohtml
42 lines (41 loc) · 1.46 KB
/
index.gohtml
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
<!DOCTYPE html>
<!--suppress HtmlUnknownTarget -->
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="theme-color" content="#000000"/>
<meta name="description" content="Minetest Skin Server"/>
<title>Minetest Skin Server</title>
{{if .DevMode}}
<!--suppress JSUnresolvedReference, JSFileReferences -->
<script type="module">
import RefreshRuntime from '/@react-refresh'
RefreshRuntime.injectIntoGlobalHook(window)
window.$RefreshReg$ = () => {
}
window.$RefreshSig$ = () => (type) => type
window.__vite_plugin_react_preamble_installed__ = true
</script>
<script type="module" src="/@vite/client"></script>
{{end}}
{{if .GoogleSiteVerification}}
<!--Verification key used to prove the ownership of the site in the Google Search Console-->
<meta
name="google-site-verification"
content="{{ .GoogleSiteVerification }}"
/>
{{end}}
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
{{if .DevMode}}
<script type="module" src="/src/main.tsx"></script>
{{else}}
<link rel="stylesheet" href="/{{ .MainCSS }}"/>
<script type="module" src="/{{ .MainJS }}"></script>
{{end}}
</body>
</html>