-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (67 loc) · 2.72 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
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="google" content="notranslate">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<title>멸망 전의 전술 교본</title>
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-82091357-9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag () { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-82091357-9');
</script>
</head>
<body>
<div id="pagemayexpired" style="text-align:center; margin:1em;padding:2em; background:rgba(88,173,224,0.2); display:none">
긴 시간동안 사이트가 로드되지 않고 있습니다.<br />
사이트가 업데이트되었을 수 있습니다.<br />
새로고침을 시도하고, 문제가 동일하다면 브라우저 캐시를 비우고 다시 접속해보세요.<br />
<br />
The site isn't loading for a long time.<br />
The site might have been updated.<br />
Try refresh the page, and if the problem is the same, clear your browser cache and try again.
</div>
<div id="pageonloading" style="text-align:center; margin:1em;padding:4em">
<picture>
<source srcset="/external/assets/ui/page_loading.webp" type="image/webp" />
<img src="/external/assets/ui/page_loading.gif" style="margin:5px" />
</picture>
<br />
페이지 리소스를 불러오고 있습니다.<br />
<br />
Loading page resources.
</div>
<div id="pageonerror" style="text-align:center; margin:1em;padding:2em; background:rgba(255,0,0,0.125); display:none">
페이지를 불러오지 못했습니다.<br />
새로고침을 시도하거나 아래를 통해 연락하세요.<br /><br />
Failed to load page.<br />
Try refresh the page, or contact via below methods.<br /><br />
<a href="mailto:[email protected]">[email protected]</a><br />
<a href="https://twitter.com/wolfgangkurzdev">@wolfgangkurzdev</a>
</div>
<div id="page"></div>
<script>
window.addEventListener("error", (e) => {
const el1 = document.querySelector("#pageonloading");
if (el1) {
const el2 = document.querySelector("#pageonerror");
el1.style.display = "none";
el2.style.display = "";
}
});
setTimeout(() => {
const el = document.querySelector("#pagemayexpired");
if (!el) return;
el.style.display = "";
}, 10000);
</script>
<script type="module" src="/src/index.ts"></script>
</body>
</html>