This repository has been archived by the owner on Feb 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
213 lines (201 loc) · 10.9 KB
/
index.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
<!DOCTYPE html>
<head>
<title>Salt Lake Swim League</title>
<meta charset="utf-8">
<meta name="viewport" content ="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700|Droid+Serif:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
</head>
<body>
<div class="menuSelections menuSelectionsHidden">
<ul>
<li class="missionSelection menuSelection"><h3><a href="#missionSelection">Mission</a></h3></li>
<li class="teamsSelection menuSelection"><h3><a href ="#teamSelection">Teams</a></h3></li>
<li class="scheduleSelection menuSelection"><h3><a href ="#scheduleSelection">Schedule</a></h3></li>
<li class="mapSelection menuSelection"><h3><a href="#mapSelection">Map</a></h3></li>
<li class="recentTweetsSelection menuSelection"><h3><a href="#tweetSelection">RecentTweets</a></h3></li>
<li class="FAQSelection menuSelection"><h3><a href="#FAQSelection">FAQ</a></h3></li>
<li class="gallerySelection menuSelection"><h3><a href="#gallerySelection">Recent Photos</a></h3></li>
<li class="contactSelection menuSelection"><h3><a href = "#contactSelection"><a href="mailto:johnmoran@skaggscatholiccenter.org?Subject=Salt%20Lake%20Swim%20League%20Question">ContactUs</a></a></h3></li>
</ul>
<img src="img/logo.svg" class="navLogo">
</div>
<a href="#top"><img class="logo" src="img/logo.svg" alt="SLSL Logo"></a>
</div>
<div class="navDiv">
hello
<button class="menuButton"><span class="spanMenuButton">MenuButton</span></button>
</div>
<div class="cover">
<div class="mainHeader" id="top">
</div>
<div class="titleBox">
<h1>Salt Lake Swim League</h1>
</div>
<div class="scheduleSection" id="scheduleSelection">
<h1>Schedule</h1>
<div class="scheduleLine"></div>
<div class='grid-container scheduleButtons'>
<div class ='grid-2 scheduleButton jcc'><h3>JCC</h3></div>
<div class ='grid-2 scheduleButton lcac'><h3>LC</h3></div>
<div class ='grid-2 scheduleButton lt'><h3>LT</h3></div>
<div class ='grid-2 scheduleButton sm'><h3>SM</h3></div>
</div>
<div id="dateSlotsContainer">
<div id="dateslots" class="dateSlots group">
<div class="grid-container dateSlot firstSlot">
<div class="grid-3"><h4>June 16th</h4></div>
<div class="grid-9"><h5>JCC vs. Sports Mall</h5> <h6>Home</h6></div>
</div>
<div class="grid-container dateSlot">
<div class="grid-3"><h4>June 23rd</h4></div>
<div class="grid-9"><h5>JCC vs. Life Centre</h5> <h6>Home</h6></div>
</div>
<div class="grid-container dateSlot">
<div class="grid-3"><h4>June 30th</h4></div>
<div class="grid-9"><h5>JCC vs. Life Time Fitness</h5> <h6>Away</h6></div>
</div>
<div class="grid-container dateSlot">
<div class="grid-3"><h4>July 9th</h4></div>
<div class="grid-9"><h5>Relay Meet</h5> <h6>Life Time Fitness</h6></div>
</div>
<div class="grid-container dateSlot">
<div class="grid-3"><h4>July 14th</h4></div>
<div class="grid-9"><h5>JCC vs. SportsMall</h5> <h6>Away</h6></div>
</div>
<div class="grid-container dateSlot">
<div class="grid-3"><h4>July 21st</h4></div>
<div class="grid-9"><h5>JCC vs. Life Centre</h5> <h6>Away</h6></div>
</div>
<div class="grid-container dateSlot">
<div class="grid-3"><h4>July 28th</h4></div>
<div class="grid-9"><h5>JCC vs. Life Time Fitness</h5> <h6>Home</h6></div>
</div>
<div class="grid-container dateSlot">
<div class="grid-3"><h4>Aug 6th</h4></div>
<div class="grid-9"><h5>Championship Meet</h5> <h6>South Davis Rec</h6></div>
</div>
<div class="grid-container dateSlot">
<div class="grid-3"><h4>Aug 7th</h4></div>
<div class="grid-9"><h5>Championship Meet</h5> <h6>South Davis Rec</h6></div>
</div>
</div>
</div>
</div>
<div class="map" id="mapSelection">
<h1>SLSL Locations</h1>
<div class="mapDiv">
<iframe src="https://www.google.com/maps/d/embed?mid=zNm830ScceSI.kmfCoTu-_rVw" width="75%" height="400px"></iframe>
</div>
</div>
<div class="gallery" id="gallerySelection">
<div class="galleryContainer">
<h1> SLSL PHOTOS </h1>
<H3>LOCATIONS</H3>
<div class="galleryWrapper">
<ul id="photos">
<li><img id="photoSlider" src="img/southdavis1.jpg"></li>
<h3 id="photoSliderText">Championship Meet Location(South Davis)</h3>
</ul>
</div>
</div>
</div>
<div class="FAQDiv" id="FAQSelection">
<div class="FAQcontent group">
<h1>Frequently Asked ?s</h1>
<ul class="question"><p><span class="q">Q:</span> When does the swim season start and finish?</p>
<li class="answer visible"><p><span class="a">A:</span> The season runs for 12 weeks beginning May 11 and ending August 7th with the Salt Lake Swim League Championship Meet.</p></li>
</ul>
<ul class="question"><p><span class="q">Q:</span> What is the order of events at the meets?</p>
<li class="answer visible"><p><span class="a">A:</span> The order of events at dual meets is Medley Relay, Individual Medley, Freestyle, Breaststroke, Backstroke, Butterfly, and finishing with the Freestyle Relay. Each stroke/event proceeds by age group from youngest to oldest, starting with 6&under. Ladies always swim before the gentlemen.</p></li>
</ul>
<ul class="question"><p><span class="q">Q:</span> Will my child be able to swim in every swim meet?</p>
<li class="answer visible"><p><span class="a">A:</span> Yes. However, it is not mandatory for your child to swim in every meet. Keep in mind; in order to attend the end of the year Championship, you do need to attend at least 3 swim meets.</p></li>
</ul>
<ul class="question"><p><span class="q">Q:</span> Do you require my child to wear a specific swimsuit?</p>
<li class="answer visible"><p><span class="a">A:</span> Children are free to wear their own swimsuit, but we encourage you to purchase your team swimsuit to wear for swim meets.</p></li>
</ul>
<ul class="question"><p><span class="q">Q:</span> What should we bring to a meet?</p>
<li class="answer visible"><p><span class="a">A:</span> In addition to bringing your entire family, remember that it is to everyone’s benefit (especially the swimmer’s) to come to a meet well prepared. Below is a list of the most necessary items to bring:<br>2 suits<br>Extra towels<br>Warm blankets<br>Back-up team cap<br>Warm clothes (sweats)<br>Nutritious foods/snacks<br>Extra goggles<br>Team parka/jacket<br>Plenty of water<br>Other things you might want to bring to occupy your swimmer: games, cards, books, markers, etc.</p></li>
</ul>
<ul class="question"><p><span class="q">Q:</span> How do I sign up?</p>
<li class="answer visible"><p><span class="a">A:</span> You can sign up for one of the four teams by getting in contact with the aquatic manager of that particular club. That information can be found on our website or through the club’s website.</p></li>
</ul>
<ul class="question"><p><span class="q">Q:</span> Who do I contact for more information?</p>
<li class="answer visible"><p><span class="a">A:</span> Commissioner John Moran can answer all further questions at johnmoran@skaggscatholiccenter.org</p></li>
</ul>
<ul class="question"><p><span class="q">Q:</span> When are the swim meets and how long does a swim meet usually last?</p>
<li class="answer visible"><p><span class="a">A:</span> All dual meets (team #1 vs. team #2) are held on Tuesday evenings and usually last about 3 – 3.5 hours. Dual meets start at 5:00pm; swimmers should arrive at 4:15pm for warm-ups.</p></li>
</ul>
</div>
<div class="askUsButton group">
<p> <a href="mailto:johnmoran@skaggscatholiccenter.org?Subject=Salt%20Lake%20Swim%20League%20Question">Ask Us</a></p>
</div>
</div>
<div class="twitter" id="tweetSelection">
<div class="twittercontent">
<h1>Recent Tweets</h1>
<ul class="tweets">
<div class="group" id="tweet"></div>
</ul>
</div>
</div>
<div class ="missionSection" id="missionSelection">
<h1>Our Mission</h1>
<div class="missionLine"></div>
<p>
The Salt Lake Swim League was established in 2015 to provide the organzation and support to create and sustain a competitive swim league. The misson of the Salt Lake Swim League is to offer an environment that is safe and fun for its participants by using competitive swimming as the vehicle where sportsmanship, swimming compentency, and competition are experienced.
</p>
</div>
<div class="teams group" id="teamSelection">
<h1>Teams</h1>
<div class="team">
<h3><a href="http://www.slcjcc.org/">JCC</a></h3>
<p> Enriching the life of the Jewish community and the community at large by offering educational, cultural, and recreational opportunities in a place where people of all backgrounds, cultures and beliefs gather in peace and understanding.
</p>
</div>
<div class="team">
<h3><a href="http://www.lcathleticclub.com/">Life Centre</a></h3>
<p>The LifeCentre Athletic Club brings the finest in fitness and recreational facilities to its members and their guests. It also provides a personal and professional staff, and a combination of adult and youth programs like no other facility in the Salt Lake Valley. The LifeCentre Athletic Club is a complete service oriented “Four Star” facility that caters to you and your family’s fitness needs.
</p>
</div>
<div class="team">
<h3><a href="https://www.lifetimefitness.com/en/clubs/south-jordan-ut/your-lt.html">LIFE TIME</a></h3>
<p>Our mission is to provide an Entertaining, Educational, Friendly and Inviting, Functional and Innovative experience of uncompromising quality that meets the health and fitness needs of the entire family.
</p>
</div>
<div class="team">
<h3><a href="http://www.sportsmallgroup.com/">SPORTS MALL</a></h3>
<p> Our wide range of amenities and facilities, and unique programs and activities tell the story of why we have gained the reputation as the premiere Salt Lake swimming and tennis club. Serving Utah families since 1975, Sports Mall is the only Private Family Fitness Center that offers a full service Racquet, Swimming and Athletic Club.
</p>
</div>
</div>
<!--
<div class="about" id="aboutSelection">
<h1>About Us</h1>
<div>
<img src="img/no_avatar.png" alt="Picture of (insert name here)">
<h2>Jane Doe</h2>
<p>Example text.</p>
</div>
<div>
<img src="img/765-default-avatar.png" alt="Picture of (insert name here">
<h2>John Doe</h2>
<p>Example Text</p>
</div>
<br>
</div>
-->
<div class="sponsors group">
<h1>Partners</h1>
<div class="hytek sponsor">hytek</div>
<div class="aquaholics sponsor">aquaholics</div>
</div>
<footer>
<p>Salt Lake Swim League © 2015</p>
</footer>
<script type="text/javascript" src="js/minApp.js" ></script>
</div>
</body>
</html>