-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
123 lines (89 loc) · 3 KB
/
index.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="HandheldFriendly" content="true">
<meta name="MobileOptimized" content="640">
<link rel="stylesheet" href="/stylesheets/style.css">
<link rel="stylesheet" href="/stylesheets/header.css">
<link rel="stylesheet" href="/stylesheets/nav.css">
<link rel="stylesheet" href="/stylesheets/main.css">
<link rel="stylesheet" href="/stylesheets/footer.css">
<link rel="shortcut icon" type="image/png" href="/images/favicon.png">
<title>Training information and links</title>
</head>
<body>
<header>
<a id="title" href="/">
Rebuilding Better and Greener
<br>
<div id="using-policy-simulation-tools">Using Policy Simulation Tools</div>
</a>
<div id="logos">
</a>
<a href="https://www.un.org/development/desa/en/">
<img src="/images/logos/undesa.png" alt="UNDESA Logo">
</a>
</div>
</header>
<nav>
<input id="toggle" class="no-desktop" type="checkbox">
<div class="no-desktop">
<label for="toggle">
<svg style="width:28px;height:28px" viewBox="0 0 24 18">
<path fill="white" d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z"></path>
</svg>
</label>
</div>
<a href="/about" class="toggleable">About the Project</a>
<a href="/og-model" class="toggleable">OG Model</a>
<a href="/clews-model" class="toggleable">CLEWs Model</a>
<a href="/wefm-model" class="toggleable">WEFM Model</a>
<a href="/news-events" class="toggleable">News and Events</a>
<script>
(function () {
var as = document.querySelectorAll('body > nav a');
var path = location.pathname;
for (var a of as) {
var regex = new RegExp(`${a.pathname}`);
if (!a.href.match('#') && path.match(regex)) {
a.classList.add('active');
break;
}
}
})();
</script>
</nav>
<main>
<!-- CONTENT-STARTS -->
<link rel="stylesheet" href="/stylesheets/index.css">
<section class="banner" style="background-image: url(/images/photos/haiti-coastline.jpg);
min-height: 300px
;">
</section>
<section style="display: block !important;">
<h1>References for training participants of PDF project</h1>
<div style="font-size: 1.3em;">
<p>Placeholder page.</p>
<p></p>
</div>
</section>
<!-- CONTENT-ENDS -->
</main>
<footer>
<div class="t-col">
<a href="http://www.un.org/en/sections/about-website/copyright">Copyright</a>
</div>
<div class="t-col">
<a href="https://www.un.org/en/sections/about-website/terms-use">Terms of Use</a>
</div>
<div class="t-col">
<a href="http://www.un.org/en/sections/about-website/privacy-notice">Privacy Notice</a>
</div>
<div class="t-col">
<a href="mailto:youremailhere">Contact</a>
</div>
</footer>
</body>
</html>