-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (115 loc) · 5.13 KB
/
Copy pathindex.html
File metadata and controls
119 lines (115 loc) · 5.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<script
src="https://kit.fontawesome.com/ba7e2f13b3.js"
crossorigin="anonymous"
></script>
<link rel="apple-touch-icon" sizes="57x57" href="apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="apple-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon-76x76.png" />
<link
rel="apple-touch-icon"
sizes="114x114"
href="apple-icon-114x114.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="apple-icon-120x120.png"
/>
<link
rel="apple-touch-icon"
sizes="144x144"
href="apple-icon-144x144.png"
/>
<link
rel="apple-touch-icon"
sizes="152x152"
href="apple-icon-152x152.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="apple-icon-180x180.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="android-icon-192x192.png"
/>
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png" />
<meta name="theme-color" content="#ffffff" />
<!-- Facebook Link Sharing -->
<meta property="og:url" content="https://keep.id" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Keep.Id" />
<meta
property="og:description"
content="Safeguarding Identities of Those Experiencing Homelessness"
/>
<meta
property="og:image"
content="https://keep.id/fb-sharing-logo-landscape.png"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Twitter Link Sharing -->
<meta name="twitter:title" content="Keep.Id" />
<meta
name="twitter:description"
content="Safeguarding Identities of Those Experiencing Homelessness"
/>
<meta name="twitter:image" content="https://keep.id/fb-sharing-logo.png" />
<meta name="twitter:card" content="summary" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<!-- Content Security Policy -->
<!-- <meta http-equiv="Content-Security-Policy" content="
default-src 'self' 'unsafe-inline';
script-src 'self' https://ajax.cloudflare.com/ https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js https://code.jquery.com/jquery-3.4.1.slim.min.js localhost:* http://127.0.0.1/ http://localhost/ https://js.hsforms.net/ https://forms.hsforms.com/
https://www.google-analytics.com/ https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js https://www.google.com/recaptcha/ https://www.gstatic.com/ https://static.cloudflareinsights.com/beacon.min.js *.googleapis.com/ https://maps.googleapis.com/ http://js.hs-analytics.net/ https://js.hs-analytics.net/ https://js.hscollectedforms.net/ https://js.hs-banner.com/ http://js.hs-scripts.com/;
style-src 'self' https://fonts.googleapis.com/ *.keep.id https://keep.id/ 'unsafe-inline';
object-src 'self' data:;
base-uri 'self';
connect-src 'self' https://maps.googleapis.com/ https://www.google-analytics.com/ https://server.keep.id/ *.keep.id/ localhost:* http://127.0.0.1/ http://localhost/ https://forms.hubspot.com/;
font-src 'self' https://fonts.gstatic.com/ https://fonts.googleapis.com/;
frame-src 'self' blob: https://www.google.com/ *.keep.id https://keep.id/ https://server.keep.id;
img-src 'self' https://maps.googleapis.com/ https://maps.gstatic.com/ https://track.hubspot.com/ https://forms.hsforms.com/ https://perf.hsforms.com/ https://www.google-analytics.com/ data:;
manifest-src 'self';
media-src 'self';
worker-src 'none';"
/> -->
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico/v2" />
<meta name="theme-color" content="#000000" />
<!-- The Web App Manifest is generated and injected by vite-plugin-pwa.
See vite.pwa.config.ts for manifest contents. -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Keep.ID" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=AW-391118279"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'AW-391118279');
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>