-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathlesson_footer.html
More file actions
87 lines (83 loc) · 3.32 KB
/
lesson_footer.html
File metadata and controls
87 lines (83 loc) · 3.32 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
{% comment %}
Footer for lesson pages.
{% endcomment %}
{% include gh_variables.html %}
<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>
<footer>
<div class="row">
<div class="col-md-6 copyright" align="left">
{% if site.carpentry == "swc" %}
Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2018–{{ 'now' | date: "%Y" }}
by <a href="{{ site.carpentries_site }}">The Carpentries</a>
<br>
Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2016–2018
by <a href="{{ site.swc_site }}">Software Carpentry Foundation</a>
{% elsif site.carpentry == "dc" %}
Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2018–{{ 'now' | date: "%Y" }}
by <a href="{{ site.carpentries_site }}">The Carpentries</a>
<br>
Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2016–2018
by <a href="{{ site.dc_site }}">Data Carpentry</a>
{% elsif site.carpentry == "lc" %}
Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2016–{{ 'now' | date: "%Y" }}
by <a href="{{ site.lc_site }}">Library Carpentry</a>
{% elsif site.carpentry == "cp" %}
Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2018–{{ 'now' | date: "%Y" }}
by <a href="{{ site.carpentries_site }}">The Carpentries</a>
{% endif %}
</div>
<div class="col-md-6 help-links" align="right">
{% if page.source %}
{% if page.source == "Rmd" %}
<a href="{{repo_url}}/edit/{{ default_branch }}/{{page.path|replace: "_episodes", "_episodes_rmd" | replace: ".md", ".Rmd"}}" data-checker-ignore>Edit on GitHub</a>
{% endif %}
{% else %}
<a href="{{repo_url}}/edit/{{ default_branch }}/{{page.path}}" data-checker-ignore>Edit on GitHub</a>
{% endif %}
/
<a href="{{ repo_url }}/blob/{{ source_branch }}/CONTRIBUTING.md" data-checker-ignore>Contributing</a>
/
<a href="{{ repo_url }}/">Source</a>
/
<a href="https://doi.org/10.5281/zenodo.3974591" data-checker-ignore>Cite</a>
/
<a href="mailto:{{ site.email }}">Contact</a>
</div>
</div>
<div class="row">
<div class="col-md-12" align="center">
Using <a href="https://github.com/carpentries/styles/">The Carpentries style</a>
version <a href="https://github.com/carpentries/styles/releases/tag/v9.5.3">9.5.3</a>.
</div>
</div>
<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></p></td>
<td><p style="font-size:95%;"><a href="https://esmvaltool.org/legal_notice/">Legal Notice</a></p></td>
<!-- <td><p style="font-size:95%;"><a href="https://esmvaltool.org/privacy/">Privacy Notice</a></p></td>-->
<td><p style="font-size:95%;"><a href="https://esmvaltool.org/terms_of_use/">Terms of use</a></p></td>
<td><p style="font-size:95%;"><a href="https://esmvaltool.org/acknowledgements/">ESMValTool Funding</a></p></td>
</tr>
</table>
</footer>