-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot.html
More file actions
38 lines (34 loc) · 995 Bytes
/
plot.html
File metadata and controls
38 lines (34 loc) · 995 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Climate plot</title>
<link rel="stylesheet" href="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="app.js"></script>
<script>initPlotPage();</script>
</body>
</html>