-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
75 lines (71 loc) · 2.33 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="nl">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Indicium</title>
<meta name="description" content="Wij zijn dé studievereniging voor HBO-ICT van Hogeschool Utrecht" />
<!-- preload fonts -->
<link
rel="preload"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<link
rel="preload"
href="https://svindicium.nl/fonts/constan.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<!-- preload homepage first carousel image -->
<link rel="preload" href="/assets/images/DSC_2456.webp" as="image" />
<!-- Open Graph meta tags -->
<meta property="og:site_name" content="Studievereniging Indicium" />
<meta property="og:title" content="Studievereniging Indicium" />
<meta property="og:description" content="Dé studievereniging voor HBO-ICT van Hogeschool Utrecht" />
<meta property="og:url" content="https://svindicium.nl/" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://svindicium.nl/og-logo.png" />
<meta property="og:image:alt" content="Indicium" />
<!-- Twitter / X / Elon Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<!-- Fix flicker with root background to prefered colorscheme -->
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: white;
}
}
</style>
</head>
<body>
<noscript>
<style>
body {
font-family:
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Open Sans',
'Helvetica Neue',
sans-serif;
}
</style>
<strong
>We're sorry but the Indicium site doesn't work properly without JavaScript enabled. <br />Please enable it to
continue.</strong
>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>