-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (65 loc) · 1.75 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<link
href="/apple-touch-icon.png"
rel="apple-touch-icon"
sizes="180x180"
type="image/png"
/>
<link
href="/favicon.ico"
rel="icon"
sizes="16x16 32x32"
type="image/vnd.microsoft.icon"
/>
<link
href="/icon.svg"
rel="icon"
sizes="any"
type="image/svg+xml"
/>
<link
href="/manifest.webmanifest"
rel="manifest"
type="text/webappmanifest"
/>
<meta
content="width=device-width, initial-scale=1.0"
name="viewport"
/>
<meta
content="summary"
name="twitter:card"
/>
<meta
content="@sofken_natori"
name="twitter:site"
/>
<title>ソフトウェア研究部会</title>
<script>
(() => {
'use strict';
const query = window.location.search;
if(query) {
const GET = query.slice(1).split('&').reduce((prev, curr) => {
const pair = curr.split('=');
prev[pair[0]] = pair[1];
return prev;
}, {});
if(GET['p']) {
window.history.replaceState(window.history.state, null, decodeURIComponent(GET['p']));
}
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script
src="/src/main.tsx"
type="module"
></script>
</body>
</html>