-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (67 loc) · 2.21 KB
/
index.html
File metadata and controls
71 lines (67 loc) · 2.21 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta httpEquiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<meta />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="index, follow" />
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="white"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#382f29"
/>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- Meta tags for Facebook, LinkedIn, and Google -->
<meta property="og:type" content="article" />
<meta property="og:title" content=".devClub" />
<meta
property="og:description"
content="University of Manitoba's .devClub"
/>
<meta property="og:url" content="https://devclub.ca" />
<meta property="og:site_name" content=".devClub" />
<meta name="title" content=".devClub" />
<meta name="description" content="University of Manitoba's .devClub" />
<title>UofM's .devClub</title>
<script>
// https://www.smashingmagazine.com/2016/08/sghpa-single-page-app-hack-github-pages/
// GH pages does not handle SPA routing well, so this should store the
// previously requested route (e.g. /contact) and redirect the user to
// the correct page.
//
// One benefit of this vs. using a 404 page is that redirection is better
// for search crawlers.
(function () {
var redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect != location.href) {
history.replaceState(null, null, redirect);
}
})();
</script>
<!-- GA tag -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-GJ31SGJ64Y"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-GJ31SGJ64Y");
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>