-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 2.02 KB
/
index.html
File metadata and controls
56 lines (48 loc) · 2.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
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
<!doctype html>
<html lang="nl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FunderMaps</title>
<meta name="description" content="FunderMaps — Inzicht in funderingen, risico's en bodemdata van Nederlandse gebouwen." />
<!-- Open Graph -->
<meta property="og:title" content="FunderMaps" />
<meta property="og:description" content="Inzicht in funderingen, risico's en bodemdata van Nederlandse gebouwen." />
<meta property="og:type" content="website" />
<meta property="og:image" content="/fundermaps-mark.svg" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/fundermaps-mark.svg" />
<link rel="apple-touch-icon" href="/fundermaps-mark.svg" />
<!-- Theme -->
<meta name="theme-color" content="#28CC8B" />
<!-- Content Security Policy -->
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
script-src 'self' blob:;
style-src 'self' 'unsafe-inline';
img-src 'self' data: blob: https:;
font-src 'self';
connect-src 'self' https://*.mapbox.com https://api.pdok.nl https://*.fundermaps.com https://*.digitaloceanspaces.com https://*.amazonaws.com https://fundermaps-api-test-grcaa.ondigitalocean.app;
worker-src 'self' blob:;
child-src blob:;
base-uri 'self';
form-action 'self';
" />
<!-- Preconnect to external services -->
<link rel="preconnect" href="https://api.mapbox.com" />
<link rel="preconnect" href="https://events.mapbox.com" />
<!-- Build version -->
<meta name="version" content="%VITE_GIT_COMMIT_HASH%" />
<!-- Web App Manifest -->
<link rel="manifest" href="/manifest.json" />
</head>
<body>
<div id="app"></div>
<noscript>
<p style="padding: 2rem; font-family: sans-serif;">
FunderMaps vereist JavaScript. Schakel JavaScript in om de applicatie te gebruiken.
</p>
</noscript>
<script type="module" src="/src/main.ts"></script>
</body>
</html>