-
Notifications
You must be signed in to change notification settings - Fork 0
/
teams.html
239 lines (223 loc) · 7.78 KB
/
teams.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
---
title: FACC Ri3D Teams
teams:
- 0:
name: "MRi3D"
org: "FIRST Alumni and Mentors Network at Michigan (FAMNM)"
facebook: "https://www.facebook.com/theFAMNM/"
twitter: "https://twitter.com/thefamnm"
instagram: "https://www.instagram.com/thefamnm/"
website: "https://famnm.club/events/ri3d/index.html"
youtube: "https://www.youtube.com/channel/UCX8tBxhLFfs_3mZNGgp2UuQ"
twitch: "https://twitch.tv/famnm"
image: "teams/mri3d.png"
- 0:
name: "FIRST Robotics OSU"
org: "FIRST Alumni and Robotics at Ohio State"
facebook: "https://www.facebook.com/firstroboticsosu/"
twitter: "https://twitter.com/firstroboticosu"
instagram: "https://www.instagram.com/firstroboticsosu/"
website: "https://firstrobotics.osu.edu"
youtube: "https://www.youtube.com/channel/UCRsCDiSIQzP49JnIHDwDO_A"
twitch: "https://www.twitch.tv/firstroboticsosu"
image: "teams/frosu.png"
- 0:
name: "FSU Dawgs"
org: "FIRST Robotics RSO"
facebook: "https://www.facebook.com/fsufirstrobotic/"
twitter: "https://twitter.com/fsufirstrobotic"
instagram: "https://instagram.com/fsufirstrobotic"
website: ""
youtube: ""
twitch: ""
image: "teams/fsu.png"
- 0:
name: "FIRST at Michigan State"
org: "FIRST at Michigan State (FMS)"
facebook: ""
twitter: "https://twitter.com/FIRSTatMSU"
instagram: "https://www.instagram.com/firstatmsu/?hl=en"
website: "https://firstatmsu.org/"
youtube: ""
twitch: "http://www.twitch.tv/firstatmsu"
image: "teams/fms.png"
- 0:
name: "The Bulldogs"
org: "FIRST Alumni At Kettering (FAAK)"
facebook: ""
twitter: "https://twitter.com/kettering_ri3d"
instagram: "https://www.instagram.com/kettering.ri3d/"
website: "http://kettering-ri3d.000webhostapp.com"
youtube: "https://www.youtube.com/channel/UCQ6GjN65GM_PlD7_7ogodfg"
twitch: ""
image: "teams/faak.jpg"
- 0:
name: "FANGV"
org: "GVSU FIRST Alumni"
facebook: ""
twitter: "https://twitter.com/firstalumgv"
instagram: "https://www.instagram.com/firstalumgv/"
website: ""
youtube: ""
twitch: "https://www.twitch.tv/gvsufirstalumni/videos"
image: "teams/fangv.png"
- 0:
name: "UIUC Ri3D"
org: "Illini Robotics Alumni Association"
facebook: "https://www.facebook.com/UIUC.IRAA/"
twitter: "https://twitter.com/UIUC_IRAA"
instagram: ""
website: "https://illinois.campuslabs.com/engage/organization/IRAA"
youtube: "https://www.youtube.com/channel/UCf0_Km5kEazjKjWnnS_AfUg"
twitch: "https://www.twitch.tv/uiuc_ri3d"
image: "teams/iraa.jpg"
- 0:
name: "Dayton Ri3D"
org: "University of Dayton"
facebook: ""
twitter: "https://twitter.com/Ri3dUd"
instagram: "https://www.instagram.com/first_dri3d/"
website: ""
youtube: "https://www.youtube.com/channel/UCOz03_l1laNDEssqJ5yiGng"
twitch: "https://www.twitch.tv/udri3d/"
image: "teams/dri3d.jpg"
---
<!doctype html>
<html lang="en">
<head>
{% include title-styles.html %}
<style>
#exec-comm-img {
max-width: 50%;
}
.media img {
max-height: 96px;
}
.member-orgs ul {
list-style-type: none;
padding-left: 0;
}
@media (max-width: 767px) {
#exec-comm-img {
max-width: 90%;
}
}
</style>
</head>
<body>
{% include navbar.html %}
<div class="container">
<div class="content">
<br />
<h1 class="text-center">Competing 2020 Ri3D Teams</h1>
<div class="row">
{% for team in page.teams %}
<div class="col-md-6 col-lg-4">
<div class="card">
<img alt="Card image cap" class="card-img-top img-fluid" src="{{ site.url }}/{{ site.baseurl }}/img/{{ team[0].image }}" />
<div class="card-block">
<h4 class="card-title">{{ team[0].name }}</h4>
<p class="card-text">
{{ team[0].org }}
<ul>
{% if team[0].website != "" %}
<li>
<a href={{ team[0].website }} target="_blank">
<i class="fas fa-link"></i> - Website
</a>
</li>
{% endif %}
{% if team[0].youtube != "" %}
<li>
<a href={{ team[0].youtube }} target="_blank">
<i class="fab fa-youtube"></i> - YouTube
</a>
</li>
{% endif %}
{% if team[0].twitch != "" %}
<li>
<a href={{ team[0].twitch }} target="_blank">
<i class="fab fa-twitch"></i> - Twitch
</a>
</li>
{% endif %}
{% if team[0].facebook != "" %}
<li>
<a href={{ team[0].facebook }} target="_blank">
<i class="fab fa-facebook-square"></i> - Facebook
</a>
</li>
{% endif %}
{% if team[0].twitter != "" %}
<li>
<a href={{ team[0].twitter }} target="_blank">
<i class="fab fa-twitter-square"></i> - Twitter
</a>
</li>
{% endif %}
{% if team[0].instagram != "" %}
<li>
<a href={{ team[0].instagram }} target="_blank">
<i class="fab fa-instagram"></i> - Instagram
</a>
</li>
{% endif %}
</ul>
</p>
</div>
</div>
</div>
{% endfor %}
</div>
<p>
<br />
</p>
<h3 class="text-center">Looking for more?</h3>
<p>
<br />
You can find some of the other Ri3D teams that won't be competing
in the FIRST Alumni Collegiate Competition in
<a href=https://www.chiefdelphi.com/t/ri3d-links-all-in-one-place/369240?u=famnm>
this Chief Delphi wiki.
</a>
</p>
<br />
</div><!-- /.container -->
{% include footer.html %}
{% include scripts.html %}
<!-- Page styles -->
<style>
.notify-badge{
position: absolute;
right:-1.5vw;
top:-1.5vw;
background:#353942;
text-align: center;
border-radius: 30px 30px 30px 30px;
color:#e9cc06;
padding:0.375vw 0.75vw;
font-size:1.5vw;
}
@media (max-width: 800px) {
.card-img-top {
height: 100%;
}
}
@media (min-width: 801px) {
.card-img-top {
height: 25vw;
}
}
.card-img-top {
width: 100%;
object-fit: cover;
}
.card {
margin-top:1.5vw
}
.card-block {
padding: 1.5vw;
}
</style>
</body>
</html>