-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
452 lines (399 loc) · 20.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
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rutgers University - Society of Physics Students</title>
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico" type="image/icon">
<link rel="icon" href="favicon.ico" type="image/icon">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="mail_widget.css">
<style type="text/css">
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic);
</style>
<style type="text/css">
@import url(https://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic);
</style>
<script src='assets/fullcalendar-3.9.0/lib/jquery.min.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href='assets/fullcalendar-3.9.0/fullcalendar.min.css' rel='stylesheet' />
<link href='assets/fullcalendar-3.9.0/fullcalendar.print.min.css' rel='stylesheet' media='print' />
<script src='assets/fullcalendar-3.9.0/lib/moment.min.js'></script>
<script src='assets/fullcalendar-3.9.0/fullcalendar.min.js'></script>
<script src='assets/fullcalendar-3.9.0/gcal.min.js'></script>
<script>
$(document).ready(function () {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: '',
right: 'title'
},
buttonText: {
today: 'Today',
month: 'month',
week: 'week',
day: 'day',
list: 'list'
},
defaultView: 'listYear',
displayEventTime: true, // don't show the time column in list view
// THIS KEY WON'T WORK IN PRODUCTION!!!
// To make your own Google API key, follow the directions here:
// http://fullcalendar.io/docs/google_calendar/
// googleCalendarApiKey: 'AIzaSyDcnW6WejpTOCffshGDDb4neIrXVUA1EAE',
googleCalendarApiKey: 'AIzaSyANxluZKDwEDCBn7c0p_GmxMQSugyfkzvI',
// US Holidays
// events: 'en.usa#holiday@group.v.calendar.google.com',
events: {
googleCalendarId: 'rutgerssps@gmail.com'
},
eventClick: function (event) {
// opens events in a popup window
window.open(event.url, 'gcalevent', 'width=700,height=600');
return false;
},
loading: function (bool) {
$('#loading').toggle(bool);
},
eventRender: function (event, element, view) {
var eventEnd = moment(event.end);
var NOW = moment();
if (eventEnd.diff(NOW, 'seconds') <= 0) {
return false;
}
},
});
});
</script>
<style>
#calendar {
max-width: 900px;
margin: 0 auto;
}
</style>
</head>
<body>
<div id="myScrollSpy">
<div id="particles-js"></div>
<!-- Navbar -->
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand bold" href="#" style="color: #a0a0a0;">RUTGERS SPS</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right bold" style="color: #a0a0a0;">
<li><a href="#about" style="color: #a0a0a0;">ABOUT US</a></li>
<li><a href="#events" style="color: #a0a0a0;">EVENTS</a></li>
<li><a href="#officers" style="color: #a0a0a0;">OFFICERS</a></li>
<li><a href="#join" style="color: #a0a0a0;">JOIN</a></li>
</ul>
</div>
</div>
</nav>
<!-- First Container -->
<div class="container-fluid bg-1 text-center">
<div id="overlay">
<br /> <br />
<img src="assets/logo/png/RUSPS_Logo_512.png" class="img-responsive margin" style="display:inline"
alt="SPS" width="512" />
<br /> <br />
<h1>Society of Physics Students</h1>
<h3>Rutgers University Chapter</h3>
</div>
</div>
<!-- Second Container -->
<div id="about" class="container-fluid bg-4 text-center">
<h2 class="margin">ABOUT US</h2>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8" style="text-align: left; padding-bottom: 20px;">
<p>The purpose of RU SPS is to be a foundation for the community of RU physics majors and a promoter
of the general awareness and understanding of physics. RU SPS will provide the academic and
social resources such that undergraduates can get the most out of their education, as well as
benefit from the companionship of their peers and will be the focal point where majors will get
to know the students they will be studying with for the rest of their undergraduate career.</p>
</div>
</div>
<div class="row"><br /> </div>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-4">
<img src="assets/schnetzer_talk_f2015.jpg" class="img-responsive img-thumbnail"
style="border-radius:20px; border: 20px; padding:10px; box-shadow: 10px;" alt="SPS" />
<p class="caption"> A talk on High Energy Physics given by Professor Schnetzer in fall of 2015</p>
</div>
<div class="col-sm-4" style="text-align: left;">
<p> SPS also organizes social events such as BBQs and parties. A newsletter is sent out regularly
with content such as interviews and articles on and by faculty, as well as information on
seminars given by faculty members, tours of the physics labs, social events that mix faculty and
students. SPS also publishes articles (on the website and newsletter) on courses, grad school,
and internships; and also facilitates open communication between upper and lower classpeople.
Furthermore, SPS organizes seminars, field trip tours of other labs, experiment demonstrations
</p>
</div>
<div class="col-sm-2"></div>
</div>
<br />
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8" style="text-align: center; padding-bottom: 20px;">
<p>
If you are interested in becoming a member of SPS (or would just like to add your name to our
mailing list), click the button below!</p>
</div>
</div>
<a href="#join" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-envelope"></span> Sign Up
</a>
</div>
</div>
<div id="zone-meeting" class="container-fluid text-center bg-2">
<h2 class="margin" style="font-weight:bold;">ANNOUNCEMENTS</h2>
<br />
<div class="container announcement-container items-center">
<!--<h2 class="margin" style="font-weight:bold;">WELCOME!</h2>-->
<h2 class="margin" style="font-weight:bold;">WELCOME BACK!</h2>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<!--<p class="event-text">The Society of Physics Students would like to welcome all new and returning
students this semester! We hope you enjoy all the exciting events we have planned for the
upcoming year.<br /> <br />
<b>Directions to Room 330:</b> From the entrance to the Serin Physics Building (not the Physics
Lecture Hall) closest to the Allison Road Classrooms
(ARC), go up one flight of stairs to the third floor and follow signs for room 330.
</p>-->
<p class="event-text"> The Society of Physics Students would like to welcome all new and returning students this semester! We hope you enjoy all the exciting events we have planned for the upcoming year!<br /> <br />
<b>To Join our Discord:</b> The link to join our Discord can be found on our Rutgers GetInvolved page as well as in our weekly emails.
</p>
</div>
<div class="col-sm-2">
</div>
</div>
</div>
</div>
<!-- Second Container -->
<div id="events" class="container-fluid text-center">
<div class="container cal-container">
<h2 class="margin" style="font-weight:bold;">UPCOMING EVENTS</h2>
<div id='calendar'></div>
</div>
</div>
<!-- Third Container (Grid) -->
<div id="officers" class="container-fluid bg-3 text-center">
<h2 class="margin">OFFICERS</h2><br>
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-2" style="padding-bottom: 20px">
<img src="assets/profile_pictures/NoahPaladino.jpg" class="img-responsive img-circle img-thumbnail"
style="width:80%; padding: 5px;" alt="Image">
<h3>Noah Paladino</h3>
<h5>President</h5>
<h6 class="email">noah.paladino@rutgers.edu</h6>
</div>
<div class="col-sm-2" style="padding-bottom: 20px">
<img src="assets/profile_pictures/SkandaRao.png" class="img-responsive img-circle img-thumbnail"
style="width:80%; padding: 5px;" alt="Image">
<h3>Skanda Rao</h3>
<h5>Vice President</h5>
<h6 class="email">svr34@scarletmail.rutgers.edu</h6>
</div>
<div class="col-sm-2" style="padding-bottom: 20px">
<img src="assets/profile_pictures/SamLeigh.jpg" class="img-responsive img-circle img-thumbnail"
style="width:80%; padding: 5px;" alt="Image">
<h3>Samuel Leigh</h3>
<h5>Treasurer</h5>
<h6 class="email">sel145@scarletmail.rutgers.edu</h6>
</div>
</div>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-2" style="padding-bottom: 20px">
<img src="assets/profile_pictures/BeatriceLiangGilman.jpeg" class="img-responsive img-circle img-thumbnail"
style="width:80%; padding: 5px;" alt="Image">
<h3>Beatrice Liang-Gilman</h3>
<h5>Secretary</h5>
<h6 class="email">bel56@scarletmail.rutgers.edu</h6>
</div>
<div class="col-sm-2" style="padding-bottom: 20px">
<img src="assets/profile_pictures/WilliamBidle.jpg" class="img-responsive img-circle img-thumbnail"
style="width:80%; padding: 5px;" alt="Image">
<h3>Will Bidle</h3>
<h5>Outreach Coordinator</h5>
<h6 class="email">wkb15@scarletmail.rutgers.edu</h6>
</div>
<div class="col-sm-2" style="padding-bottom: 20px">
<img src="assets/profile_pictures/GeorgiaSandidge.png" class="img-responsive img-circle img-thumbnail"
style="width:80%; padding: 5px;" alt="Image">
<h3>Georgia Sandidge</h3>
<h5>Public Relations</h5>
<h6 class="email">gls81@scarletmail.rutgers.edu</h6>
</div>
<div class="col-sm-2" style="padding-bottom: 20px">
<img src="assets/profile_pictures/ShivamPatel.jpg" class="img-responsive img-circle img-thumbnail"
style="width:80%; padding: 5px;" alt="Image">
<h3>Shivam Patel</h3>
<h5>Event Coordinator</h5>
<h6 class="email">srp230@scarletmail.rutgers.edu</h6>
</div>
</div>
<br />
<!--con-link"></span> Former Officers
</a>-->
</div>
<!-- Second Container -->
<div id="join" class="container-fluid text-center">
<h2 class="margin">JOIN</h2>
<h3>Join our mailing list by filling out the form below: </h3>
<br />
<div id="mlb2-1259454" class="ml-form-embedContainer ml-subscribe-form ml-subscribe-form-1259454">
<div class="ml-form-align-center ">
<div class="ml-form-embedWrapper embedForm">
<div class="ml-form-embedBody ml-form-embedBodyDefault row-form">
<div class="ml-form-embedContent" style=" ">
<h4>Join the SPS Mailing List</h4>
<p style="text-align: center;"><strong><span style="font-size: 20px;">For notifications
about meetings, events, and more!</span></strong></p>
</div>
<form class="ml-block-form" action="https://app.mailerlite.com/webforms/submit/l9e5f5"
data-code="l9e5f5" method="post" target="_blank">
<div class="ml-form-formContent">
<div class="ml-form-fieldRow ">
<div class="ml-field-group ml-field-email ml-validate-email ml-validate-required">
<input type="email" class="form-control" data-inputmask="" name="fields[email]"
value="" placeholder="Email">
</div>
</div>
<div class="ml-form-fieldRow ml-last-item">
<div class="ml-field-group ml-field-name">
<input type="text" class="form-control" data-inputmask="" name="fields[name]"
value="" placeholder="Name">
</div>
</div>
</div>
<style type="text/css">
.ml-form-recaptcha {
margin-bottom: 20px;
}
.ml-form-recaptcha.ml-error iframe {
border: solid 1px #ff0000;
}
</style>
<div class="ml-form-recaptcha ml-validate-required">
<script src="https://www.google.com/recaptcha/api.js"></script>
<div class="g-recaptcha" data-sitekey="6Lf1KHQUAAAAAFNKEX1hdSWCS3mRMv4FlFaNslaD"></div>
</div>
<input type="hidden" name="ml-submit" value="1">
<div class="ml-form-embedSubmit">
<button type="submit" class="primary">Subscribe</button>
<button disabled="disabled" style="display: none;" type="button" class="loading">
<div class="ml-form-embedSubmitLoad">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</button>
</div>
</form>
</div>
<div class="ml-form-successBody row-success" style="display: none">
<div class="ml-form-successContent">
<h4>Thank you!</h4>
<p style="text-align: center;"><span style="color: #ffffff;"><strong><span
style="font-size: 20px;">You have successfully joined our subscriber
list.</span></strong></span></p>
</div>
</div>
</div>
</div>
</div>
<script>
function ml_webform_success_1259454() {
var $ = ml_jQuery || jQuery;
$('.ml-subscribe-form-1259454 .row-success').show();
$('.ml-subscribe-form-1259454 .row-form').hide();
}
</script>
<img src="https://track.mailerlite.com/webforms/o/1259454/l9e5f5?vd890ed88b3a28c805acc70e1a88fa27c" width="1"
height="1"
style="max-width: 1px; max-height: 1px; visibility: hidden; padding: 0; margin: 0; display: block;"
border="0">
<script src="https://static.mailerlite.com/js/w/webforms.min.js?vd890ed88b3a28c805acc70e1a88fa27c"
type="text/javascript"></script>
</div>
</div>
<!-- Footer -->
<footer class="container-fluid bg-2 text-center">
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-2" style="padding-bottom: 40px">
<h2 style="padding-bottom: 10px">Contact</h2>
<h6>Got Questions?</h6>
<h6>Send us an email at:</h6>
<h6 class="email">rutgerssps@gmail.com</h6>
</div>
<div class="col-sm-2"></div>
<div class="col-sm-2" style="padding-bottom: 40px">
<h2 style="padding-bottom: 10px">Resources</h2>
<h6><a class="footer-link" href="https://www.rutgers.edu/">Rutgers University Main Page </a></h6>
<a class="footer-link" href="http://physics.rutgers.edu/">Rutgers Physics Department </a>
</div>
</div>
<p>© 2019 Rutgers Society of Physics Students. All rights reserved.</p>
</footer>
<script src="http://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<!-- stats.js lib -->
<script src="http://threejs.org/examples/js/libs/stats.min.js"></script>
<script type="text/javascript">
$(function () {
particlesJS.load('particles-js', 'config/particlesjs-config.json', function () {
console.log('callback - particles.js config loaded');
});
var update;
update = function () {
if (window.pJSDom[0].pJS.particles && window.pJSDom[0].pJS.particles.array) { }
requestAnimationFrame(update);
};
requestAnimationFrame(update);
});
</script>
</body>
<script type="text/javascript" src="js/smoothscroll.js"></script>
<script type="text/javascript">
function landscapeStatus() {
if ($(window).height() <= $(window).width()) {
return true
} else {
return false
}
}
function pageResize() {
$("#Logo").css("padding-top", $(window).height() * 1.5 / 8);
$("#Logo").height($(window).height() * 1.25 / 4);
$(".btn-circle").width($(".col-md-2").width() * .6);
$(".btn-circle").css("border-radius", $(".col-md-2").width() * .6 * .05);
$("#top").css("min-height", $(window).height() + 25);
//$(".shrink-a-bit").width($(window).width()*7/8);
$(".shrink-a-bit").css("padding-top", $(window).height() * 1 / 16);
$(".shrink-a-bit").css("padding-bottom", $(window).height() * 1 / 8);
$(".shrink-a-bit").css("padding-left", $(window).width() * 1 / 8);
$(".shrink-a-bit").css("padding-right", $(window).width() * 1 / 8);
$(".secTitle").css("padding-bottom", $(window).height() * 1 / 16)
$(".pentry").css("min-height", getTallestProject() + 7);
$(".rentry").css("min-height", getTallestResearch() + 7);
$(".stdImgSet").height($("#stdImg").height());
}
pageResize();
</script>
</html>