-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (61 loc) · 1.87 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
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/ui.js"></script>
<title>Placemark Archive</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]" />
</head>
<body>
<main>
<div class="box">
<p>
Placemark stopped being a company and started being an open source
project on January 19, 2024. Below is an archive of the website.
</p>
<ul>
<li>
<a class="bold" href="https://play.placemark.io"
>Use Placemark Play (for free)</a
>
</li>
<li>
<a href="https://github.com/placemark/placemark"
>GitHub Repository (MIT licensed)</a
>
</li>
<li>
<a
href="https://www.figma.com/community/plugin/1189962635826293304/placemark"
>Placemark Figma Plugin (make vector maps from OpenStreetMap!)</a
>
</li>
<li>
<a
href="https://www.figma.com/community/plugin/1323092380415927575/placemark-globe"
>
Placemark Globe Figma Plugin (render vector globes in Figma!)
</a>
</li>
</ul>
</div>
</main>
<replay-web-page
source="https://archive.placemark.io/placemark%202024-01-19.wacz"
url="https://www.placemark.io/"
></replay-web-page>
<script>
const searchParams = new URLSearchParams(location.search);
const path = searchParams.get("path");
console.log(path);
if (path) {
document
.querySelector("replay-web-page")
.setAttribute("url", `https://www.placemark.io${path}`);
}
</script>
<script
data-goatcounter="https://placemark.goatcounter.com/count"
async
src="//gc.zgo.at/count.js"
></script>
</body>
</html>