-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
58 lines (47 loc) · 3.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="ExploreZelda is an interactive map for finding hidden treasure, routing speedruns, 100% playthru, etc..." />
<meta name="keywords" content="zelda, zelda map, totk map, Tears of the Kingdom map, hyrule map, totk guide, speedrun" />
<meta name="robots" content="index, follow">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@designgears">
<meta name="twitter:title" content="ExploreZelda: Tears of the Kingdom Interactive Map">
<meta name="twitter:description" content="ExploreZelda is an interactive map for finding hidden treasure, routing speedruns, 100% playthru, etc...">
<meta name="twitter:image" content="https://explorezelda.com/assets/img/large.jpg">
<meta property="og:locale" content="en_US">
<meta property="og:title" content="ExploreZelda: Tears of the Kingdom Interactive Map" />
<meta property="og:site_name" content="Explore Zelda">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://explorezelda.com/" />
<meta property="og:image" content="https://explorezelda.com/assets/img/og.jpg" />
<meta property="og:description" content="ExploreZelda is an interactive map for finding hidden treasure, routing speedruns, 100% playthru, etc..." />
<link rel="icon" href="favicon.ico">
<title>ExploreZelda: Tears of the Kingdom Interactive Map</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.3/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.10.5/font/bootstrap-icons.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.css" />
<link rel="stylesheet" type="text/css" href="assets/css/leaflet.groupedlayercontrol.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/custom.css" />
</head>
<body>
<div id="map"></div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.3/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet-src.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-hash/0.2.1/leaflet-hash.js"></script>
<script type="text/javascript" src="assets/js/Leaflet.CanvasMarker.js"></script>
<script type="text/javascript" src="assets/js/leaflet.groupedlayercontrol.js"></script>
<script type="text/javascript" src="assets/js/custom.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-06ZP4VCJQG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-06ZP4VCJQG');
</script>
</body>
</html>