-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
75 lines (68 loc) · 3.93 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
74
75
<!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 href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<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" />
<!-- boostrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.4/font/bootstrap-icons.css">
<!-- og & meta -->
<meta name="title" content="SITCON X GDSC 學生社群大亂鬥 @COSCUP 2023" />
<meta name="description" content="7/29, 30 臺灣科技大學 COSCUP 2023 不用報名,歡迎到場參與!「學生社群大亂鬥」社群議程軌由 SITCON 與 GDSC TW & HK 合作主持,期待與您相見! " />
<meta property="og:type" content="website">
<meta property="og:title" content="SITCON X GDSC 學生社群大亂鬥 @COSCUP 2023">
<meta property="og:description" content="7/29, 30 臺灣科技大學 COSCUP 2023 不用報名,歡迎到場參與!「學生社群大亂鬥」社群議程軌由 SITCON 與 GDSC TW & HK 合作主持,期待與您相見! ">
<meta property="og:image" content="https://sitcon.org/2023/imgs/GDSCxSITCON.png">
<meta property="og:url" content="https://sitcon.org/2023/">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="SITCON X GDSC 學生社群大亂鬥 @COSCUP 2023">
<meta property="twitter:description" content="7/29, 30 臺灣科技大學 COSCUP 2023 不用報名,歡迎到場參與!「學生社群大亂鬥」社群議程軌由 SITCON 與 GDSC TW & HK 合作主持,期待與您相見! ">
<meta property="twitter:image" content="https://sitcon.org/2023/imgs/GDSCxSITCON.png">
<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>
<!-- boostrap -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></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>學生社群大亂鬥</title>
</head>
<style>
#app{
overflow-x: hidden;
}
</style>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>