-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
32 lines (31 loc) · 1003 Bytes
/
index.php
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
<?php
include 'header.php';
?>
<div class="row content">
<div class="col-sm-2 sidenav">
<p><a href="#">Link</a></p>
<p><a href="#">Link</a></p>
<p><a href="#">Link</a></p>
</div>
<div class="col-sm-8 text-left">
<h1>Welcome</h1>
<p>We are an official club at RIT whose goal it is to make learning about Data Science as fun and interactive as possible.
We do this by having data fests which allow students to compete against each other in groups for prizes! We also have guest lecturers come in and
have tutorial sessions!
</p>
<hr>
<h3>How do I join?</h3>
<p>Simple! Just click <a href="https://discord.gg/RvDtAcfFF5">here</a> to join our club Discord where all of our announcements are made!</p>
</div>
<div class="col-sm-2 sidenav">
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
</div>
</div>
<?php
include 'footer.php';
?>