1
+ ---
2
+ layout: default
3
+ title: "Dev & Software at Teach LA"
4
+ permalink: "/projects"
5
+ ---
6
+
7
+ < h1 class ="title page-title "> Our Projects</ h1 >
8
+
9
+
10
+
11
+ < h2 class ="title page-title text-center " id ="projects "> </ h2 >
12
+ < div class ="row-desktop-ratio-1-1-1 ">
13
+ {% assign finished = site.data.projects | where:"wip", "false" %}
14
+ {% for proj in finished %}
15
+ < div class ="dev-project-card ">
16
+ < div class ="dev-project-card-content ">
17
+ < h3 class ="title dev-project-title ">
18
+ {{ proj.name }}
19
+ </ h3 >
20
+ < div class ="dev-project-info-row ">
21
+ < span class ="dev-project-badge lang-{{proj.lang.abbrev}} "> </ span > {{proj.lang.full}} •
22
+ < a class ="tla-link " href ="{{proj.link}} "> < span class ="fa fa-link "> </ span > project</ a >
23
+ •
24
+ < a class ="tla-link " href ="https://github.com/{{proj.repo}} "> < span class ="fab fa-github "> </ span > repo</ a >
25
+ </ div >
26
+ < p >
27
+ {{proj.description}}
28
+ </ p >
29
+ {% if proj.lead %}
30
+ < p >
31
+ Lead(s):
32
+ {% for lead in proj.lead %}
33
+ < a class ="tla-link " href ="{{site.baseurl}}/team/{{lead.hash}} ">
34
+ {{lead.name}}
35
+ </ a > {% if forloop.last != true %},{% endif %}
36
+ {% endfor %}
37
+ </ p >
38
+ {% endif %}
39
+ </ div >
40
+
41
+ < div class ="dev-project-tech-container ">
42
+ {% for tech in proj.tech %}
43
+ < span class ="dev-project-tech-tag ">
44
+ {{tech}}
45
+ </ span >
46
+ {% endfor %}
47
+ </ div >
48
+ </ div >
49
+ {% endfor %}
50
+ </ div >
51
+
52
+ < h2 class ="title page-title text-center "id ="WIP "> Stuff that's in the works</ h2 >
53
+ < div class ="row-desktop-ratio-1-1-1 ">
54
+ {% assign inProgress = site.data.projects | where:"wip", "true"%}
55
+ {% for proj in inProgress %}
56
+ < div class ="dev-project-card ">
57
+ < div class ="dev-project-card-content ">
58
+ < h3 class ="title dev-project-title ">
59
+ {{ proj.name }}
60
+ </ h3 >
61
+ < div class ="dev-project-info-row ">
62
+ < span class ="dev-project-badge lang-{{proj.lang.abbrev}} "> </ span > {{proj.lang.full}} •
63
+ {% if proj.link %}
64
+ < a class ="tla-link " href ="{{proj.link}} "> < span class ="fa fa-link "> </ span > project</ a >
65
+ •
66
+ {% endif %}
67
+ < a class ="tla-link " href ="https://github.com/{{proj.repo}} "> < span class ="fab fa-github "> </ span > repo</ a >
68
+ </ div >
69
+ < p >
70
+ {{proj.description}}
71
+ </ p >
72
+ {% if proj.lead %}
73
+ < p >
74
+ Lead(s):
75
+ {% for lead in proj.lead %}
76
+ < a class ="tla-link " href ="{{site.baseurl}}/team/{{lead.hash}} ">
77
+ {{lead.name}}
78
+ </ a > {% if forloop.last != true %},{% endif %}
79
+ {% endfor %}
80
+ </ p >
81
+ {% endif %}
82
+ </ div >
83
+
84
+ < div class ="dev-project-tech-container ">
85
+ {% for tech in proj.tech %}
86
+ < span class ="dev-project-tech-tag ">
87
+ {{tech}}
88
+ </ span >
89
+ {% endfor %}
90
+ </ div >
91
+ </ div >
92
+ {% endfor %}
93
+ </ div >
94
+
95
+
96
+ {% include contact-cta.html %}
0 commit comments