forked from swcarpentry/DEPRECATED-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (101 loc) · 4.22 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
{% extends "_base.html" %}
{% block file_metadata %}
<meta name="title" content="Home Page" />
<meta name="subfile" content="license.html" />
<meta name="subfile" content="about/90seconds.html" />
<meta name="subfile" content="about/audience.html" />
<meta name="subfile" content="about/biblio.html" />
<meta name="subfile" content="about/contributing.html" />
<meta name="subfile" content="about/credits.html" />
<meta name="subfile" content="about/faq.html" />
<meta name="subfile" content="about/team.html" />
<meta name="subfile" content="about/testimonials.html" />
<meta name="subfile" content="badges/index.html" />
<meta name="subfile" content="bootcamps/index.html" />
<meta name="subfile" content="bootcamps/conduct.html" />
<meta name="subfile" content="bootcamps/how-to.html" />
<meta name="subfile" content="bootcamps/office-hours.html" />
<meta name="subfile" content="bootcamps/staffing.html" />
<meta name="subfile" content="setup/index.html" />
<meta name="subfile" content="blog/index.html" />
<meta name="subfile" content="4_0/index.html" />
<meta name="subfile" content="3_0/index.html" />
{% endblock file_metadata %}
{% block title %}{% endblock title %}
{% block navhighlight %}{{navhighlight('home')}}{% endblock navhighlight %}
{% block content %}
<div align="center">
<img src="{{root_path}}/img/bootcamps/2012-12-uta.png" alt="Boot Camp at the University of Texas, 2012" />
<h3><em>Helping scientists build better software since 1998.</em></h3>
</div>
<div class="row">
<div class="span6">
<h4>Our Mission</h4>
<p>
Software Carpentry helps researchers be more productive
by teaching them basic computing skills.
We run boot camps at dozens of sites around the world,
and also provide open access material online for self-paced instruction.
The benefits are more reliable results and higher productivity:
a day a week is common, and a ten-fold improvement isn't rare.
</p>
<h4>Who We Are</h4>
<p>
Software Carpentry is a volunteer organization supported by
the <a href="http://www.sloan.org">Alfred P. Sloan Foundation</a>
and the <a href="http://www.mozilla.org">Mozilla Foundation</a>.
Come and meet <a href="{{root_path}}/about/credits.html">our sponsors</a>
and <a href="{{root_path}}/about/team.html">our team</a>.
</p>
<h4>Testimonials</h4>
<p>
Can Software Carpentry help you?
These <a href="{{root_path}}/about/testimonials.html">stories from past participants</a>
and our <a href="{{root_path}}/about/audience.html">descriptions of typical learners</a>
can help you decide.
</p>
</div>
<div class="span6">
<h4>Boot Camps</h4>
<p>
Our boot camps cover the core skills every scientist needs to get
more done in less time: program construction, version control,
testing, the command line, and data management. Short lessons
alternate with hands-on practical sessions for two full days.
Check out
<a href="{{root_path}}/bootcamps/index.html#calendar">our calendar</a>
to find a boot camp near you.
</p>
<h4>Learn Online</h4>
<p>
Our <a href="{{root_path}}/4_0/index.html">video lectures</a> cover
all of our core topics and much else as well, and all of our
material can be freely re-used under
<a href="{{root_path}}/license.html">open access licenses</a>.
The <a href="{{root_path}}/3_0/index.html">previous version</a>
of our material is also available,
along with a <a href="{{root_path}}/about/biblio.html">reading list</a>.
</p>
<h4>Join Us</h4>
<p>
There are many ways you can
<a href="{{root_path}}/about/contributing.html">help us help scientists</a>:
hosting a boot camp,
teaching one yourself,
contributing new material,
and more.
</p>
</div>
</div>
<div align="center">
<p>
For more information, check out our
<a href="{{root_path}}/blog/index.html">blog</a>,
follow us on Twitter
as <a href="{{twitter_url}}">{{twitter_name}}</a>,
or contact us by email
at <a href="mailto:{{contact_email}}">{{contact_email}}</a>.
</p>
</div>
{% endblock content %}
{% block comments %}{% endblock comments %}