-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
42 lines (35 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CartoCams</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M99FWNR7WR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-M99FWNR7WR");
</script>
<link rel="shortcut icon" href="./src/static/icon.svg" />
<link rel="icon" href="./src/static/icon.svg" />
<link rel="apple-touch-icon" href="./src/static/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="all" />
<meta name="description"
content="On CartoCams, you can find all webcams known to OpenStreetMap. Zoom in to see if your town or city has a webcam." />
<meta name="keywords" content="webcams, OpenStreetMap, CartoCams, live cams, city cams" />
<meta name="author" content="CartoCams Team" />
<meta property="og:title" content="CartoCams" />
<meta property="og:description"
content="On CartoCams, you can find all webcams known to OpenStreetMap. Zoom in to see if your town or city has a webcam." />
<meta property="og:image" content="./src/static/icon.svg" />
<meta property="og:url" content="https://www.cartocams.com" />
<meta name="twitter:card" content="summary_large_image" />
</head>
<body>
<div id="app" class="fill"></div>
<script type="module" src="./src/index.tsx"></script>
</body>
</html>