-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (90 loc) · 5.09 KB
/
index.html
File metadata and controls
92 lines (90 loc) · 5.09 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
88
89
90
91
92
---
layout: default
title: "Home"
---
<!-- <img class="img-responsive img-push-down img-curved img-push-up" src="{{site.baseurl}}/img/brockton-resized.jpg" alt="Teach LA members at Brockton" /> -->
<div class="row-desktop row-desktop-ratio-1-1">
<div class="col-padded">
<img class="img-responsive img-push-down img-curved" src="{{site.baseurl}}/img/day-of-code-original.jpg" alt="Tutors working with students at our Day of Code event" />
</div>
<div class="col-padded v-center-children">
<h2 class="title text-teachla">How does it work?</h2>
<p>
Teach LA's flagship program is teaching classes, which typically meet once or twice a week for a quarter. Classes have a wide variety of objectives, ranging from an introduction to python or web development to advanced topics such as machine learning and data science. Each class balances instruction and time for hands-on experimentation, with trained teachers helping students learn and use the material.
</p>
<div class="button-container">
<a class="button" href="{{site.baseurl}}/about"><span class="fa fa-book"></span> Learn More</a>
<a class="button button-dark" href="{{site.baseurl}}/team"><span class="fa fa-users"></span> Meet Our Team</a>
</div>
</div>
</div>
<div class="row-desktop row-desktop-ratio-1-1 row-desktop-reverse">
<div class="col-padded">
<img class="img-responsive img-push-down img-curved" src="{{site.baseurl}}/img/editor-screenshot.png" alt="Preview of our editor" />
</div>
<div class="col-padded v-center-children">
<h2 class="title text-teachla">editor project</h2>
<p>
We've developed an open-source online code editor specifically targeted towards students learning how to code. Students can sign up easily, and our service stores and runs their code - which removes issues about using a specific computer, and allows students to access their code anywhere! We currently support Python, HTML, and Processing, and plan on adding more features soon!
</p>
<div class="button-container">
<a class="button" href="{{site.editor_link}}"><span class="fa fa-fw fa-laptop-code"></span> Try Our Editor</a>
<a class="button button-dark" href="https://github.com/uclaacm/TeachLAFrontend"><span class="fab fa-fw fa-github"></span> Source Code</a>
</div>
</div>
</div>
<div class="row-desktop row-desktop-ratio-1-1">
<div class="col-padded">
<img class="img-responsive img-push-down img-curved" src="{{site.baseurl}}/img/cipher-salad-learning-lab.png" alt="Cipher Salad home screen" />
</div>
<div class="col-padded v-center-children">
<h2 class="title text-teachla">learning labs</h2>
<p>
Our dev team develops online modules called Learning Labs that each focus on a specific topic in computer science, such as CNNs, cryptography, and password secruity.
Through interactive activities and visuals, our Learning Labs aim to make complicated concepts easy to digest!
</p>
<div class="button-container">
<a class="button" href="{{site.baseurl}}/dev/#projects"><span class="fa fa-book"></span> Learn More</a>
</div>
</div>
</div>
<div class="row-desktop row-desktop-ratio-1-1 row-desktop-reverse">
<div class="col-padded">
<img class="img-responsive img-push-down img-curved" src="{{site.baseurl}}/img/coder_teachla.png" alt="teacher" />
</div>
<div class="col-padded v-center-children">
<h2 class="title text-teachla">what we teach</h2>
<p>
Depending on the group of students and their coding backgrounds, we shape the class to maximize their learning. Topics that students have learned in the past include programming fundamentals (in Python or Scratch) and intro to web development (in HTML/CSS), as well as complex topics like machine learning and mobile app development.
<br />
<br />
We're looking to expand our set of topics: data science, game development, digital art, you name it - if you're interested, get in touch!
</p>
</div>
</div>
<div class="row-desktop-ratio-1-1">
{% for class in site.data.classes %}
<div class="col-padded">
<div class="class-card-compact">
<img class="img-responsive" alt="decorative image for {{class.name}}"
src="{{site.baseurl}}/img/{{class.img}}" />
<h3 class="title">{{class.name}}</h3>
<p class="no-margin">
{% for tag in class.tags %}{{tag}} • {% endfor %}
</p>
<div class="button-container">
{% if class.path %}
<a class="button button-dark" href="{{site.baseurl}}/classes/{{class.path}}">
<span class="fa fa-map-signs"></span> Class Page
</a>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
<h2 class="title text-teachla">most recent blog</h2>
{% for post in site.posts limit:1 %}
{% include blog-preview-card.html %}
{% endfor %}
{% include contact-cta.html %}