-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot.html
More file actions
48 lines (39 loc) · 1.19 KB
/
Copy pathplot.html
File metadata and controls
48 lines (39 loc) · 1.19 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" />
<title>Climate plot</title>
<script>
if (/\/proxy\/\d+$/.test(window.location.pathname)) {
window.location.replace(window.location.pathname + "/" + window.location.search + window.location.hash);
}
</script>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<header class="site-header compact">
<div>
<a id="backToIndicator" class="back-link" href="index.html">← Back</a>
<p class="eyebrow" id="plotEyebrow">Climate plot</p>
<h1 id="plotTitle">Loading plot</h1>
<p class="lead" id="plotDescription"></p>
</div>
</header>
<main class="page-wrap plot-page">
<figure class="full-figure">
<img id="fullPlot" alt="Climate plot" />
<figcaption id="plotCaption"></figcaption>
</figure>
<section class="metadata-panel">
<h2>Details</h2>
<dl id="metadataList"></dl>
</section>
</main>
<footer class="site-footer">
<span id="plotFooter"></span>
</footer>
<script src="assets/js/app.js"></script>
<script>initPlotPage();</script>
</body>
</html>