-
Notifications
You must be signed in to change notification settings - Fork 21
/
dev.html
167 lines (157 loc) · 6.93 KB
/
dev.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
---
layout: default
title: "Dev & Software at Teach LA"
permalink: "/dev"
---
<h1 class="title page-title">Dev & Software</h1>
<div class="row-desktop-ratio-1-2">
<div class="v-center-children">
<img class="img-responsive" src="{{site.baseurl}}/img/undraw/pair-programming.svg" alt="Man and Woman pair programming at one computer."/>
</div>
<div class="dev-content">
<h2 class="title">About the Dev Team</h2>
<p>
ACM Teach LA has a vibrant development team focused on using software to democratize access to education. We develop a range of web applications, from tools like <a class="tla-link" href="{{site.editor_link}}" target="_blank" rel="noopener noreferrer">our online code editor</a>, to our interactive and narrative-focused learning labs, to this very website!
</p>
<p>
We're also an organization committed to open-source. Everything we do, from all of our projects to developer training, is available on ACM @ UCLA <a class="tla-link" href="https://github.com/{{site.github_username}}" target="_blank" rel="noopener noreferrer">GitHub organization</a>. You can even view <a class="tla-link" href="https://github.com/uclaacm/teach-la-website/blob/master/dev.html" target="_blank" rel="noopener noreferrer">this page on GitHub</a>.
</p>
<div class="button-container">
<a class="button button-dark" href="{{site.dev_team_interest}}">
<span class="fa fa-file-alt"></span> Join Us!
</a>
<a class="button button-dark" href="{{site.baseurl}}/docs">
<span class="fa fa-file-alt"></span> Dev Docs
</a>
<a class="button button-dark" href="#projects">
<span class="fab fa-github"></span> Our Projects
</a>
</div>
</div>
</div>
<div class="row-desktop-ratio-1-2 row-desktop-reverse">
<div class="v-center-children">
<img class="img-responsive" src="{{site.baseurl}}/img/undraw/team-page.svg" alt="clip art showing diverse group of profile images on webpage" />
</div>
<div class="dev-content">
<h2 class="title" id="join">Join us!</h2>
<p>
In parallel, we're a dev team focused on developer training, education, and growth. We're currently accepting new members! No experience required, membership will be purely based on application time!
<ul>
<li>
If you’re interested in being a project lead, apply by Friday, 1/14 at 11:59 PM PT
</li>
<li>
For everyone else, priority given to applications before Friday, 1/14 at 11:59 PM PT
</li>
</ul>
</p>
<p>
Who are we looking for? The short answer is, lots of people! We care most about people who are passionate about education and technology and want to help teach the world - previous experience or tech skills is a plus, but absolutely not required. Relevant roles include:
</p>
<ul>
<li>
Content Developers (no coding required!)
</li>
<li>
Frontend Web Developers
</li>
<li>
Backend Web Developers
</li>
<li>
UI/UX Designers
</li>
<li>
Graphic Designers
</li>
<li>
... and, <b>your role</b>, even if it's not here
</li>
</ul>
<p>
Sound like something you want to do? <a class="tla-link" href="{{site.dev_team_interest}}">Fill out our interest form!</a> Or, if you want more information, you can email our <a class="tla-link" href="{{site.baseurl}}/team/dponniah">our dev team director, Divya</a>. We're excited to see you soon!
</p>
</div>
</div>
<h2 class="title page-title text-center" id="projects">Our Projects</h2>
<div class="row-desktop-ratio-1-1-1">
{% assign finished = site.data.projects | where:"wip", "false" %}
{% for proj in finished %}
<div class="dev-project-card">
<div class="dev-project-card-content">
<h3 class="title dev-project-title">
{{ proj.name }}
</h3>
<div class="dev-project-info-row">
<span class="dev-project-badge lang-{{proj.lang.abbrev}}"></span> {{proj.lang.full}} •
<a class="tla-link" href="{{proj.link}}"><span class="fa fa-link"></span> project</a>
•
<a class="tla-link" href="https://github.com/{{proj.repo}}"><span class="fab fa-github"></span> repo</a>
</div>
<p>
{{proj.description}}
</p>
{% if proj.lead %}
<p>
Lead(s):
{% for lead in proj.lead %}
<a class="tla-link" href="{{site.baseurl}}/team/{{lead.hash}}">
{{lead.name}}
</a>{% if forloop.last != true %},{% endif %}
{% endfor %}
</p>
{% endif %}
</div>
<div class="dev-project-tech-container">
{% for tech in proj.tech %}
<span class="dev-project-tech-tag">
{{tech}}
</span>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
<h2 class="title page-title text-center"id="WIP">Stuff that's in the works</h2>
<div class="row-desktop-ratio-1-1-1">
{% assign inProgress = site.data.projects | where:"wip", "true"%}
{% for proj in inProgress %}
<div class="dev-project-card">
<div class="dev-project-card-content">
<h3 class="title dev-project-title">
{{ proj.name }}
</h3>
<div class="dev-project-info-row">
<span class="dev-project-badge lang-{{proj.lang.abbrev}}"></span> {{proj.lang.full}} •
{% if proj.link %}
<a class="tla-link" href="{{proj.link}}"><span class="fa fa-link"></span> project</a>
•
{% endif %}
<a class="tla-link" href="https://github.com/{{proj.repo}}"><span class="fab fa-github"></span> repo</a>
</div>
<p>
{{proj.description}}
</p>
{% if proj.lead %}
<p>
Lead(s):
{% for lead in proj.lead %}
<a class="tla-link" href="{{site.baseurl}}/team/{{lead.hash}}">
{{lead.name}}
</a>{% if forloop.last != true %},{% endif %}
{% endfor %}
</p>
{% endif %}
</div>
<div class="dev-project-tech-container">
{% for tech in proj.tech %}
<span class="dev-project-tech-tag">
{{tech}}
</span>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
{% include contact-cta.html %}