-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (104 loc) · 4.6 KB
/
index.html
File metadata and controls
122 lines (104 loc) · 4.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>Laurier Computing Society</title>
<!-- SEO Meta Tags -->
<meta name="description"
content="Join Laurier Computing Society, a vibrant community for computer science and tech enthusiasts at Wilfrid Laurier University. Attend events, network, and grow your tech skills." />
<meta name="keywords"
content="Laurier Computing Society, LCS, computer science, student tech club, Wilfrid Laurier University, programming, tech community, events" />
<meta name="author" content="Laurier Computing Society" />
<!-- Open Graph Tags -->
<meta property="og:title" content="Laurier Computing Society" />
<meta property="og:description"
content="Join our vibrant tech community at Wilfrid Laurier University. Attend events, connect with peers, and advance your computing skills." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lauriercs.ca" />
<meta property="og:image" content="https://lauriercs.ca/favicon/web-app-manifest-512x512.png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:type" content="image/png" />
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Laurier Computing Society" />
<meta name="twitter:description"
content="A vibrant tech community and student organization at Wilfrid Laurier University." />
<meta name="twitter:image" content="https://lauriercs.ca/favicon/web-app-manifest-512x512.png" />
<meta name="twitter:image:alt" content="Laurier Computing Society logo" />
<!-- Canonical URL -->
<link rel="canonical" href="https://lauriercs.ca" />
<!-- Web App Manifest -->
<link rel="manifest" href="/favicon/site.webmanifest" />
<!-- Dynamic Favicon (set by JavaScript) -->
<link id="dynamic-favicon" rel="icon" />
<!-- Fallback PNG favicon -->
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png" />
<!-- Apple Touch Icon for iOS -->
<link rel="apple-touch-icon" href="/favicon/apple-touch-icon.png" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<!-- Theme Color -->
<meta name="theme-color" content="#2C3844" />
<!-- Favicon Theme Switcher Script -->
<script>
function updateFavicon() {
const isDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
const faviconLink = document.getElementById('dynamic-favicon');
// Set SVG favicon for modern browsers with theme support
if (isDark) {
faviconLink.rel = 'icon';
faviconLink.type = 'image/svg+xml';
faviconLink.href = '/favicon/favicon.svg';
} else {
faviconLink.rel = 'icon';
faviconLink.type = 'image/svg+xml';
faviconLink.href = '/favicon/LCS_Icon_Black_SVG.svg';
}
}
// Update favicon on page load
updateFavicon();
// Listen for system theme changes
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', updateFavicon);
</script>
<!-- JSON-LD Schema Markup for Organization -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Laurier Computing Society",
"url": "https://lauriercs.ca",
"description": "A vibrant tech community and student organization at Wilfrid Laurier University dedicated to computer science and technology enthusiasts.",
"logo": "https://lauriercs.ca/favicon/web-app-manifest-512x512.png",
"image": "https://lauriercs.ca/favicon/web-app-manifest-512x512.png",
"sameAs": [
"https://linkedin.com",
"https://twitter.com",
"https://discord.com"
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Student Organization",
"url": "https://lauriercs.ca"
},
"address": {
"@type": "PostalAddress",
"addressLocality": "Waterloo",
"addressRegion": "ON",
"postalCode": "N2L 3C5",
"addressCountry": "CA",
"streetAddress": "Wilfrid Laurier University"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>