-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (92 loc) · 2.7 KB
/
index.html
File metadata and controls
96 lines (92 loc) · 2.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paleofire Workshop</title>
<style>
body {
font-family: Georgia, serif;
max-width: 700px;
margin: 60px auto;
padding: 0 20px;
color: #222;
background: #fafaf8;
line-height: 1.7;
}
h1 {
font-size: 1.8em;
border-bottom: 2px solid #c0392b;
padding-bottom: 10px;
margin-bottom: 6px;
}
.subtitle {
color: #555;
margin-top: 0;
margin-bottom: 30px;
font-style: italic;
}
.links {
display: flex;
flex-direction: column;
gap: 14px;
margin-top: 24px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background: rgba(72,202,59, 0.9);
color: #2f50ab;
text-decoration: none;
border-radius: 4px;
font-family: sans-serif;
font-size: 0.95em;
width: fit-content;
transition: background 0.2s;
}
.btn:hover {
background: rgba(60, 190, 55, 0.9);
}
.binder-link {
display: flex;
align-items: center;
gap: 10px;
font-family: sans-serif;
font-size: 0.95em;
text-decoration: none;
color: #222;
}
.binder-link:hover {
text-decoration: underline;
}
footer {
margin-top: 60px;
font-size: 0.8em;
color: #999;
font-family: sans-serif;
}
</style>
</head>
<body>
<h1>Global Paleofire Workshop</h1>
<p class="subtitle">Interactive <code>neotoma2</code> R Workshop — Neotoma Paleoecology Database</p>
<p>
Welcome! This workshop introduces the <code>neotoma2</code> R package for accessing and analysing
paleoecological data from the Neotoma database. Use the links below to open the tutorial
or launch an interactive RStudio session in your browser via Binder.
</p>
<div class="links">
<a class="btn" href="https://open.neotomadb.org/Current_Workshop/simple_workflow.html" target="_blank" rel="noopener noreferrer">
Simple Workflow (HTML)
</a>
<a class="binder-link" href="https://mybinder.org/v2/gh/NeotomaDB/Current_Workshop/paleofire?urlpath=rstudio" target="_blank" rel="noopener noreferrer">
<img src="https://mybinder.org/badge_logo.svg" alt="Launch Binder">
Launch in RStudio (Binder)
</a>
</div>
<footer>
Hosted by the <a href="https://www.neotomadb.org/">Neotoma Paleoecology Database</a>.
Supported by NSF Award #1948926.
</footer>
</body>
</html>