-
Notifications
You must be signed in to change notification settings - Fork 0
/
roster.html
131 lines (130 loc) · 4.47 KB
/
roster.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
---
layout: default
permalink: /roster.html
title_prepend: Team Roster
description: Twenty FLL Teams Competing in the Seacoast FLL Qualifier
---
<div class="row">
<div class="span12">
<h2>Roster of FLL Teams</h2>
<p><a href="http://www.baesystemsfirst.org/">BAE Systems</a>, <a href="http://www.unh.edu/mechanical-engineering/">UNH Department of Mechanical Engineering</a>, and <a href="http://team3499.org/">FIRST Robotics Team 3499 Rivers Edge Robotics</a> are pleased to welcome the following FIRST LEGO League teams to the {{ site.date | date: "%Y" }} Seacoast FLL Qualifying Tournament!</p>
</div>
</div>
<div class="row">
<div class="span8 offset2">
<table class="table">
<thead>
<tr>
<th>Team Number</th>
<th>Team Name</th>
<th>Location</th>
</tr>
</thead>
<tbody>
{% for team in site.teams %}
<tr>
<td>{{ team.number }}</td>
<td>{% if team.website %}<a href="{{ team.website }}">{{ team.name }}</a>{% else %}{{ team.name }}{% endif %}</td>
<td>{{ team.location }}</td>
<tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<!--<div class="row">
<div class="span12">
<h2>Roster of JFLL Teams</h2>
<p>We are also pleased to welcome the following Junior FIRST LEGO League teams to the {{ site.date | date: "%Y" }} Seacoast FLL Qualifying Tournament!</p>
</div>
</div>
<div class="row">
<div class="span8 offset2">
<table class="table">
<thead>
<tr>
<th>Team Number</th>
<th>Team Name</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>—</td>
<td>Dover Housing Auth</td>
<td>Dover, NH</td>
</tr>
<tr>
<td>—</td>
<td>Manchester (Sheue Chen)</td>
<td>Manchester, NH</td>
</tr>
<tr>
<td>—</td>
<td>Lego Genius's (Sibona)</td>
<td>Manchester, NH</td>
</tr>
<tr>
<td>—</td>
<td>New Durham Library 1</td>
<td>New Durham, NH</td>
</tr>
<tr>
<td>—</td>
<td>New Durham Library 2</td>
<td>New Durham, NH</td>
</tr>
<tr>
<td>417</td>
<td>Laser Cyborg Knights</td>
<td>—</td>
</tr>
<tr>
<td>1596</td>
<td>LegoStrikers</td>
<td>—</td>
</tr>
<tr>
<td>1257</td>
<td>Nottingham - Dumas</td>
<td>Nottingham, NH</td>
</tr>
<tr>
<td>1974</td>
<td>Nottingham - Marcotte</td>
<td>Nottingham, NH</td>
</tr>
<tr>
<td>1975</td>
<td>Nottingham - Martin</td>
<td>Nottingham, NH</td>
</tr>
<tr>
<td>1976</td>
<td>Nottingham - Forte</td>
<td>Nottingham, NH</td>
</tr>
<tr>
<td>1977</td>
<td>Nottingham - Ferland</td>
<td>Nottingham, NH</td>
</tr>
<tr>
<td>1978</td>
<td>Nottingham - Scholtz</td>
<td>Nottingham, NH</td>
</tr>
<tr>
<td>—</td>
<td>Nottingham</td>
<td>Nottingham, NH</td>
</tr>
</tbody>
</table>
</div>
</div>-->
<div class="row">
<div class="span12">
<p><strong>Have a website for your FLL <!--or JFLL -->Team?</strong> If you would like your team website linked in the above list, please email <a href="mailto:[email protected]?Subject=Link Team Website">[email protected]</a> with your team name, team number, and website URL. Corrections are also welcome!</p>
</div>
</div>