-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
67 lines (65 loc) · 2.42 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
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>GPX Replay | Custom GPX route map animations</title>
<meta
name="description"
content="Replay route files on a map with a wide variety of customizable options."
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/static/vendor/sakura.css" />
<link rel="stylesheet" href="/static/demo.css" />
<link
href="https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.css"
rel="stylesheet"
/>
<script
async
defer
data-domain="gpx.pelmers.com"
src="https://plausible.pelmers.com/js/plausible.js"
></script>
<script>
window.plausible =
window.plausible ||
function () {
(window.plausible.q = window.plausible.q || []).push(arguments);
};
</script>
</head>
<body>
<div class="center">
<img id="logo" src="/static/logo.png" alt="GPX Replay" />
<i>Replay GPX files in the browser</i>
<ul>
<li>
New app! Do you want to split or combine GPX files or Strava
activities from your phone? Check out
<a href="https://pelmers.com/announcing-gpx-splice/" target="_blank"
>GPX Splice</a
>!
</li>
<li>
<i
>Now integrated with
<a href="https://streetwarp.com" target="_blank">Streetwarp</a
>!</i
>
</li>
<li>
<i>New feature: 3D Topography </i>
</li>
</ul>
</div>
<div id="react-root"></div>
<div id="footer" class="center">
<a href="https://pelmers.com/gpx-replay/">About</a>
<a href="https://github.com/pelmers/gpx-replay">Source</a>
<a href="https://github.com/pelmers/gpx-replay/issues/">Report bug</a>
<a href="https://github.com/pelmers/gpx-replay/issues/">Request feature</a>
</div>
<script src="/dist/demo.js" async defer></script>
</body>
</html>