forked from hpc-carpentry/hpc-carpentry.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlessons.html
94 lines (85 loc) · 3.08 KB
/
lessons.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
---
layout: page-fullwidth
permalink: /lessons/
title: Our Lessons
redirect_from:
- /lessons.html
excerpt: All our lessons are created collaboratively and can be freely reused, provided you cite us as the original source
---
<p>
Please <a href="mailto:{{site.contact_org}}">contact the maintainers</a> with any general questions.
</p>
<div class="row">
<div class="medium-4 columns">
<h4>Curriculum</h4>
<p>
Our lessons are developed collaboratively on <a href="{{site.github_url}}">GitHub</a>. You can check the status of each lesson on <a href="{{site.baseurl}}/lessons/dashboard/">our dashboard</a>, or look at <a href="{{site.baseurl}}/lessons/previous">older releases</a>. Our <a href="{{site.baseurl}}/curriculum-advisors">Curriculum Advisors</a> are part of a team that provides the oversight, vision, and leadership towards lesson development.
</p>
</div>
<div class="medium-4 columns">
<h4>Availability</h4>
<p>
All of our lessons are freely available under the <a href="{{site.baseurl}}/license/">Creative Commons - Attribution License</a>. You may re-use and re-mix the material in any way you wish,
without asking permission, provided you cite us as the original source (e.g., provide a link back to this website).
</p>
</div>
<div class="medium-4 columns">
<h4>Contributing</h4>
<p>
If you have questions about contributing to our lessons, visit each
lesson's GitHub repo to submit an issue or to get the link to join that
lesson's Maintainers' discussion on Slack.
For general information on how to contribute to our lessons, see our
<a href="https://github.com/swcarpentry/git-novice/blob/gh-pages/CONTRIBUTING.md">
contributors guide</a>.
To learn more about how our lessons are structured, and why, please
see <a href="{{site.carp_gh_io_url}}/lesson-example">
the example lesson</a>.
</p>
</div>
</div>
<h2>Our Core Lessons in English</h2>
<table class="table table-striped" style="width: 100%; max-width: 100%">
<tr>
<th>Lesson</th>
<th>Site</th>
<th>Repository</th>
<th>Reference</th>
<th>Instructor Notes</th>
<th>Maintainer(s)</th>
</tr>
{% for lesson in site.data.lessons %}
<tr>
<td>{{ lesson.title }}</td>
<td>
<a href="{{ lesson.site_url }}/{{ lesson.repo }}"
target="_blank"
class="icon-browser"
title="{{ lesson.title }}">
</a>
</td>
<td>
<a href="{{ lesson.repo_url }}/{{ lesson.repo }}"
target="_blank"
class="icon-github"
title="{{ lesson.title }}">
</a>
</td>
<td>
<a href="{{ lesson.site_url }}/{{ lesson.repo }}/reference/"
target="_blank"
class="icon-eye"
title="{{ lesson.title }} Reference">
</a>
</td>
<td>
<a href="{{ lesson.site_url }}/{{ lesson.repo }}/guide/"
target="_bank"
class="icon-circle-with-plus"
title="{{ lesson.title }} Instructor Notes">
</a>
</td>
<!--<td></td>-->
</tr>
{% endfor %}
</table>