-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter-custom.html
More file actions
32 lines (31 loc) · 1016 Bytes
/
footer-custom.html
File metadata and controls
32 lines (31 loc) · 1016 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
<head>
<script type="text/javascript">
function mail(user,domain,mailbody)
{
if (!domain) {
domain="dlr.de";
}
if (!mailbody){
mailbody=""
}
url="mail"+"to:"+user+"@"+domain+"?body="+mailbody;
window.location.href=url;
}
</script>
</head>
<table>
<tr>
<th>Contact</th>
<th>Impressum</th>
<th>Privacy</th>
<th>Terms of use</th>
<th>Acknowledgements</th>
</tr>
<tr>
<td><p style="font-size:95%;">📧 <a href="javascript:mail('birgit.hassler','dlr.de')">Birgit Hassler (Project Co-PI)</a><br></p></td>
<td><p style="font-size:95%;"><a href="/legal_notice">Legal Notice</a></p></td>
<td><p style="font-size:95%;"><a href="/privacy">Privacy Notice</a></p></td>
<td><p style="font-size:95%;"><a href="/terms_of_use">Terms of use</a></p></td>
<td><p style="font-size:95%;"><a href="/acknowledgements">ESMValTool Funding</a></p></td>
</tr>
</table>