-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrush-events.html
114 lines (93 loc) · 4.11 KB
/
rush-events.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
<!DOCTYPE html>
<!-- Sets viewport-based formatting, for different window sizes. -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Link to hamburger icon for compressed navigation bar. -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="tep-website.css">
<title>tEp: Xi Fellowship</title>
<!-- Makes all navigation bar links responsive. -->
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<body>
<div class="topnav" id="myTopnav">
<a href="home.html" id="xiohazard"><img src="xiohazard.png" class="xiohazard-logo"></img></a>
<!-- <a href="home.html">Home</a> -->
<a href="rush-events.html" class="active">Rush</a>
<a href="house-members.html">House Members</a>
<a href="the-gospel.html">The Gospel</a>
<a href="virtual-tour.html">Tour</a>
<a href="summer-boarding.html">Summer Housing</a>
<a href="https://www.instagram.com/tepxi/" target="_blank">Instagram</a>
<a href="contact-us.html">Contact</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div style="padding-left: 1em; padding-right: 1em;">
<div class="flex-wrapper">
<div class="flex-container">
<img src="0_rush.jpg" class="top-img"></img>
</div>
<div class="flex-container">
<!-- <div class="flex-item">
<img src="xiohazard.png" class="top-img"></img>
</div> -->
<div class="flex-item info-banner page-text">
<p>Interested in rushing? Join an MIT IFC Rush Circle <a href="http://www.mitifc.com/rush2020">here</a>!</p>
<p>Interested in attending tEp rush events? Add yourself to our virtual event mailing list <a href="https://groups.mit.edu/webmoira/list/tep-virtual-events" target="_blank">here</a>!</p>
<!-- <p><b>We rush year round! Want to know more about joining tEp?</b>
Feel free to email
<a href="mailto:[email protected]?Subject=I%20have%20rush%20questions!"
target="_top"> [email protected]</a>
with questions!</p> -->
<!-- <p>Directions to 253 Commonwealth Ave <a href="https://www.google.com/maps/dir/87+Massachusetts+Ave,+Cambridge,+MA+02142/tep/@42.3546719,-71.095784,15z/data=!4m14!4m13!1m5!1m1!1s0x89e370aa6684debb:0xd46f379cbe58cfe!2m2!1d-71.093291!2d42.3592487!1m5!1m1!1s0x89e37a0f3dd1b467:0x9c0b658f3c73423b!2m2!1d-71.0835159!2d42.350892!3e2"
target="_blank"> here!</a></p> -->
</div>
<!-- <div class="flex-item page-title">
Rush Events: Spring 2020
</div> -->
<div class="flex-item page-text">
<!-- ---------------------------------------------------------------------- -->
<!-- Rush Event updating instructions:
1. Make a stand-alone <p>DATE</p> line for each day of Rush/CPW.
2. Copy the entire block of code inside EVENT-START to EVENT-END and paste
it below the correct DATE line once for each event on that date. Edit the
event title and the text accordingly.
-->
<!-- EXAMPLE (uncomment below)-->
<!-- <p>Friday 4/17</p>
<button class="flex-item collapsible">Zoom Pet* Show | 5:22PM-6:22PM EDT</button>
<div class="content">
<p>Location: Zoom link TBD</p>
<p>Here at tEp we love pets. You have access to your pets. Show them off to us. <br>
*pets can include rocks, plants, or any other objects of interest</p>
</div> -->
<!-- ---------------------------------------------------------------------- -->
<!-- Script for making collapsibles work. -->
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active-collapsible");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
</div>
</div>
</div>
</body>