-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtravel.html
More file actions
48 lines (48 loc) · 3.12 KB
/
Copy pathtravel.html
File metadata and controls
48 lines (48 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel | tbd</title>
<meta property="og:title" content="Travel | tbd.codes" />
<meta property="og:description" content="the journey map — 8 countries, 212 days, one route drawn in phosphor." />
<meta property="og:url" content="https://tbd.codes/travel" />
<meta name="twitter:card" content="summary" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/terminal.css" />
<link rel="stylesheet" href="css/travel.css" />
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="alternate" type="application/rss+xml" title="tbd RSS Feed" href="/feed.xml" />
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha384-sHL9NAb7lN7rfvG5lfHpm643Xkcjzp4jFvuavGOndn6pjVqS6ny56CAt3nsEVT4H" crossorigin="anonymous" />
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.css" integrity="sha384-pmjIAcz2bAn0xukfxADbZIb3t8oRT9Sv0rvO+BR5Csr6Dhqq+nZs59P0pPKQJkEV" crossorigin="anonymous" />
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.Default.css" integrity="sha384-wgw+aLYNQ7dlhK47ZPK7FRACiq7ROZwgFNg0m04avm4CaXS+Z9Y7nMu8yNjBKYC+" crossorigin="anonymous" />
</head>
<body class="travel-page">
<header></header>
<main class="travel-main">
<div id="travel-map" class="travel-map"></div>
<div class="travel-overlay">
<h1 class="travel-title">Travel</h1>
<p class="travel-subtitle">Click a marker to open the post.</p>
<p id="journey-stats" class="journey-stats"></p>
<div id="journey-trips" class="journey-trips"></div>
<p id="journey-replay-hud" class="journey-replay-hud"></p>
<button id="journey-replay" type="button" class="journey-replay">▶ replay journey</button>
</div>
</main>
<footer></footer>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" integrity="sha384-cxOPjt7s7Iz04uaHJceBmS+qpjv2JkIHNVcuOrM+YHwZOmJGBXI00mdUXEq65HTH" crossorigin="anonymous"></script>
<script src="https://unpkg.com/leaflet.markercluster@1.5.3/dist/leaflet.markercluster.js" integrity="sha384-eXVCORTRlv4FUUgS/xmOyr66XBVraen8ATNLMESp92FKXLAMiKkerixTiBvXriZr" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/leaflet-ant-path@1.3.0/dist/leaflet-ant-path.js" integrity="sha384-OEj5w5dYIX4MUvZAeaQ/7L8HGNi6Qtb54Yl6dY1sUQyUiOuxeUznR8DOvAWHGpOx" crossorigin="anonymous"></script>
<script src="js/include-components.js"></script>
<script src="js/site-data.js"></script>
<script src="js/presence.js"></script>
<script src="js/term-core.js"></script>
<script src="js/term-commands.js"></script>
<script src="js/now-data.js"></script>
<script src="js/term-overlay.js"></script>
<script src="js/main.js"></script>
<script src="js/travel.js"></script>
</body>
</html>