-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmembers.html
More file actions
executable file
·173 lines (164 loc) · 6.77 KB
/
members.html
File metadata and controls
executable file
·173 lines (164 loc) · 6.77 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
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
168
169
170
171
172
173
---
layout: default
---
<header id="gtco-header" class="gtco-cover gtco-cover-sm" role="banner" style="background-image: url(static/images/team2.JPG)" data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="gtco-container">
<div class="row row-mt-15em">
<div class="col-md-7 mt-text text-left animate-box" data-animate-effect="fadeInUp">
<h1>Our <strong>Team</strong></h1>
<h2>We are a team of 60 undergraduates and graduates at Cornell University focused on experimental robotics, effective design work, and proper documentation.</h2>
</div>
</div>
</div>
</header>
<!-- main container -->
<div class="main-container portfolio-inner clearfix">
<!-- portfolio div -->
<div class="portfolio-div">
<div class="portfolio">
<!-- portfolio_filter -->
<div class="categories-grid wow fadeInLeft">
<nav class="categories text-center">
<ul class="portfolio_filter">
<li><a href="" class="active" data-filter="*">All</a></li>
<li><a href="" data-filter=".leads">Team Leads</a></li>
<li><a href="" data-filter=".cs">Computer Science</a></li>
<li><a href="" data-filter=".meche">Mechanical</a></li>
<li><a href="" data-filter=".ece">ECE</a></li>
<li><a href="" data-filter=".sys">Systems</a></li>
<li><a href="" data-filter=".comms">Communications</a></li>
</ul>
</nav>
</div>
<!-- portfolio_filter -->
<!-- portfolio_container -->
<div class="no-padding portfolio_container clearfix">
<!-- TEAM LEADS -->
{% for m in site.data.r %}
{% if m.Subteam contains "Lead" %}
<div class="col-md-4 col-sm-6 leads">
<a href="single-project.html" class="portfolio_item">
<a class="gtco-card-item">
<img src="static/images/test/{{m.headshot}}" alt="image" class="img-responsive" />
<div class="portfolio-border clearfix">
<div class="gtco-text">
<h2>{{m.Firstname}} {{m.Lastname}}</h2>
<p style="margin-bottom: 10px">{{m.Subteam}}{{m.Project}}</p>
<p style="margin-bottom: 10px" class="gtco-category"><span>{{m.Major}}, {{m.Year}}</span></p>
</div>
</div>
</a>
</a>
</div>
{% endif %}
{% endfor %}
<!-- END TEAM LEADS -->
<!-- CS START -->
{% for m in site.data.r %}
{% if m.Subteam=="CS" %}
<div class="col-md-4 col-sm-6 cs">
<a href="single-project.html" class="portfolio_item">
<a class="gtco-card-item">
<img src="static/images/test/{{m.headshot}}" alt="image" class="img-responsive" />
<div class="portfolio-border clearfix">
<div class="gtco-text">
<h2>{{m.Firstname}} {{m.Lastname}}</h2>
<p style="margin-bottom: 10px">{{m.Subteam}}{{m.Project}}</p>
<p style="margin-bottom: 10px" class="gtco-category"><span>{{m.Major}}, {{m.Year}}</span></p>
</div>
</div>
</a>
</a>
</div>
{% endif %}
{% endfor %}
<!-- CS END -->
<!-- MECHE START -->
{% for m in site.data.r %}
{% if m.Subteam=="ECE" %}
<div class="col-md-4 col-sm-6 ece">
<a href="single-project.html" class="portfolio_item">
<a class="gtco-card-item">
<img src="static/images/test/{{m.headshot}}" alt="image" class="img-responsive" />
<div class="portfolio-border clearfix">
<div class="gtco-text">
<h2>{{m.Firstname}} {{m.Lastname}}</h2>
<p style="margin-bottom: 10px">{{m.Subteam}}{{m.Project}}</p>
<p style="margin-bottom: 10px" class="gtco-category"><span>{{m.Major}}, {{m.Year}}</span></p>
</div>
</div>
</a>
</a>
</div>
{% endif %}
{% endfor %}
<!-- MECHE END -->
<!-- ECE START -->
{% for m in site.data.r %}
{% if m.Subteam=="MechE" %}
<div class="col-md-4 col-sm-6 meche">
<a href="single-project.html" class="portfolio_item">
<a class="gtco-card-item">
<img src="static/images/test/{{m.headshot}}" alt="image" class="img-responsive" />
<div class="portfolio-border clearfix">
<div class="gtco-text">
<h2>{{m.Firstname}} {{m.Lastname}}</h2>
<p style="margin-bottom: 10px">{{m.Subteam}}{{m.Project}}</p>
<p style="margin-bottom: 10px" class="gtco-category"><span>{{m.Major}}, {{m.Year}}</span></p>
</div>
</div>
</a>
</a>
</div>
{% endif %}
{% endfor %}
<!-- ECE END -->
<!-- SYSTEMS START -->
{% for m in site.data.r %}
{% if m.Subteam=="Systems" %}
<div class="col-md-4 col-sm-6 sys">
<a href="single-project.html" class="portfolio_item">
<a class="gtco-card-item">
<img src="static/images/test/{{m.headshot}}" alt="image" class="img-responsive" />
<div class="portfolio-border clearfix">
<div class="gtco-text">
<h2>{{m.Firstname}} {{m.Lastname}}</h2>
<p style="margin-bottom: 10px">{{m.Subteam}}{{m.Project}}</p>
<p style="margin-bottom: 10px" class="gtco-category"><span>{{m.Major}}, {{m.Year}}</span></p>
</div>
</div>
</a>
</a>
</div>
{% endif %}
{% endfor %}
<!-- SYSTEMS END -->
<!-- COMMS START -->
{% for m in site.data.r %}
{% if m.Subteam=="Communications" %}
<div class="col-md-4 col-sm-6 comms">
<a href="single-project.html" class="portfolio_item">
<a class="gtco-card-item">
<img src="static/images/test/{{m.headshot}}" alt="image" class="img-responsive" />
<div class="portfolio-border clearfix">
<div class="gtco-text">
<h2>{{m.Firstname}} {{m.Lastname}}</h2>
<p style="margin-bottom: 10px">{{m.Subteam}}{{m.Project}}</p>
<p style="margin-bottom: 10px" class="gtco-category"><span>{{m.Major}}, {{m.Year}}</span></p>
</div>
</div>
</a>
</a>
</div>
{% endif %}
{% endfor %}
<!-- COMMS END -->
</div>
<!-- end portfolio_container -->
</div>
<!-- portfolio -->
</div>
<!-- end portfolio div -->
</div>
<!-- end main container -->