-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 1.02 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="https://www.google.com/s2/favicons?domain=hkust.edu.hk&sz=64" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="KASHUN's Personal Website" />
<title>KASHUN's Personal Website</title>
<!-- Google Analytics — set VITE_GA_ID in .env to enable -->
<script>
(function() {
var id = '%VITE_GA_ID%';
if (!id || id === '%' + 'VITE_GA_ID%') return;
var s = document.createElement('script');
s.src = 'https://www.googletagmanager.com/gtag/js?id=' + id;
s.async = true;
document.head.appendChild(s);
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', id);
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>