-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhero.html
40 lines (37 loc) · 1.26 KB
/
hero.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
<div class="main-container">
{% include navigation.html %}
<div class="hero">
<div class="hero-title-container">
<div class="hero-title-acro">ILAMB</div>
<div class="hero-title-full">International Land Model Benchmarking</div>
</div>
<p>As earth system models (ESMs) become increasingly complex,
there is a growing need for comprehensive and multi-faceted
evaluation of model projections. The International Land Model
Benchmarking (ILAMB) project is a model-data intercomparison
and integration project designed to improve the performance of
land models and, in parallel, improve the design of new
measurement campaigns to reduce uncertainties associated with
key land surface processes.</p>
</div>
<div class="body-text-container stuff">
<div class="stuff-text">
{{ content }}
</div>
</div>
{% include footer.html %}
</div>
</body>
</html>