This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
54 lines (51 loc) · 2.03 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
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<!-- SITCON X -->
<meta charset="UTF-8" />
<link rel="icon" href="/imgs/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="true" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Barlow:wght@500&family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Syncopate:wght@700&family=Roboto+Condensed:wght@400;700&display=swap"
crossorigin="true" />
<!-- prefetch images -->
<link rel="prefetch" href="https://sitcon.org/2022/imgs/cfp/back-hover.svg" as="image" />
<link rel="prefetch" href="https://sitcon.org/2022/imgs/cfp/cfp_maze_pattern.png" as="image" />
<link rel="prefetch" href="https://sitcon.org/2022/imgs/cfp/CFP_desktop_mainPage.jpg" as="image" />
<script>
if (location.search.indexOf('mode=app') !== -1)
document.documentElement.classList.add('app-mode')
</script>
<!-- Google Analytics -->
<script src="https://www.googletagmanager.com/gtag/js?id=UA-34467841-1" async></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-34467841-1');
</script>
<!-- Google Tag Manager -->
<script>
! function (e, t, a, n, g) {
e[n] = e[n] || [], e[n].push({
"gtm.start": (new Date).getTime(),
event: "gtm.js"
});
var m = t.getElementsByTagName(a)[0],
r = t.createElement(a);
r.async = !0, r.src = "https://www.googletagmanager.com/gtm.js?id=GTM-NPVBCDZ", m.parentNode.insertBefore(r, m)
}(window, document, "script", "dataLayer");
</script>
<title>SITCON X</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>