-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
167 lines (159 loc) · 4.82 KB
/
index.html
File metadata and controls
167 lines (159 loc) · 4.82 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!doctype html>
<html lang="pt-PT">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/icons/favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=5.0"
/>
<meta
name="description"
content="Clube Desportivo Infante Dom Henrique - A premier sports association in Funchal, Madeira, dedicated to athletics, running, and handball since 1980."
/>
<meta
name="keywords"
content="Clube Desportivo Infante Dom Henrique, CDI-M, Sports Madeira, Athletics Funchal, Running Madeira, Handball Madeira, Skyrunning, Trail Running"
/>
<meta name="author" content="Clube Desportivo Infante Dom Henrique" />
<meta name="robots" content="index, follow" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="format-detection" content="telephone=no" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://cdinfante.org/" />
<meta property="og:title" content="Clube Desportivo Infante Dom Henrique" />
<meta
property="og:description"
content="Premier sports association in Funchal, Madeira. Promoting excellence in athletics, running, and handball since 1980."
/>
<meta
property="og:image"
content="https://cdinfante.org/icons/ci_logo_hr.png"
/>
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://cdinfante.org/"
/>
<meta
property="twitter:title"
content="Clube Desportivo Infante Dom Henrique"
/>
<meta
property="twitter:description"
content="Premier sports association in Funchal, Madeira. Promoting excellence in athletics, running, and handball since 1980."
/>
<meta
property="twitter:image"
content="https://cdinfante.org/icons/ci_logo_hr.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/icons/favicon-16x16.png"
/>
<meta
name="theme-color"
content="#001e40"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#020202"
media="(prefers-color-scheme: dark)"
/>
<link rel="canonical" href="https://cdinfante.org/" />
<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=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap"
rel="stylesheet"
/>
<link
rel="preload"
as="image"
href="/images/main/cover.avif"
type="image/avif"
fetchpriority="high"
/>
<title>Clube Desportivo Infante Dom Henrique</title>
<script>
try {
if (
localStorage.getItem("theme") === "dark" ||
(!("theme" in localStorage) &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
}
} catch (e) {}
</script>
<script type="text/javascript">
(function (l) {
if (l.search[1] === "/") {
var decoded = l.search
.slice(1)
.split("&")
.map(function (s) {
return s.replace(/~and~/g, "&");
})
.join("?");
window.history.replaceState(
null,
null,
l.pathname.slice(0, -1) + decoded + l.hash,
);
}
})(window.location);
</script>
<script src="https://web3forms.com/client/script.js" async defer></script>
</head>
<body>
<div id="root">
<style>
#initial-loader {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
background-color: #fdfdfd; /* Light theme background */
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(182, 23, 30, 0.1);
border-top-color: #b6171e; /* Brand Red */
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
@media (prefers-color-scheme: dark) {
#initial-loader {
background-color: #020202; /* Dark theme background */
}
}
</style>
<div id="initial-loader">
<div class="spinner"></div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>