forked from PurdueIEEE/old-IEEE-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·84 lines (74 loc) · 2.86 KB
/
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
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
<?php
$site_title = 'Computer Society';
$site_index = '/csociety';
include '../header.php';
?>
<link href="/assets/bootstrap.csociety.css" rel="stylesheet">
<!-- Content Row -->
<div class="well card-1">
<div class="row">
<!-- Sidebar Column -->
<div class="col-md-3">
<div class="list-group">
<a href="/csociety/projects/" class="list-group-item">Projects</a>
<a href="/csociety/Bylaws.pdf" class="list-group-item">Bylaws</a>
</div>
</div>
<!-- Content Column -->
<div class="col-md-7 text-dark col-md-offset-1">
<h2 class="text-center">IEEE Computer Society</h2>
<br>
<hr>
<h2 class="text-center">About Computer Society</h2>
<div class="col-md-6">
<img src="/csociety/images/csociety.jpg" alt="2016 Team" style="width:100%"
style="float:left" style="display:block">
<p class="text-center">2016 Purdue Supercomputer Tour</p>
</div>
<p class="text-justify">
We are a group of highly curious people with quirks in the science of computation.
We do cool stuff with computers and try to spread the enlightenment with who-so-ever
matches the level of curiosity of the group. 3D printing, web developing, cyber security,
high performance computing, machine learning, graphics and everything you've heard of
as tech-y is discussed, talked and made here, feel free to drop by. Contact Erik Wilson
at <a href="mailto:[email protected]">[email protected]</a> for
more details.
</p>
<br>
<h2 class="text-center">2019-2020 Computer Society Leadership</h2>
<a href="/csociety/images/2019_Leadership.jpg"
<p class="text-center"><img src="/csociety/images/2019_Leadership.jpg" alt="2019 Leaders" style="width:100%"></p>
</a>
<div class="row text-center">
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-2">
<h4>Jerome S.</h4>
<p>Event Coordinator<br/><br/></p>
</div>
<div class="col-md-2">
<h4>Alex F.</h4>
<p>Sponsorship Coordinator<br/><br/></p>
</div>
<div class="col-md-2">
<h4>Erik W.</h4>
<p>Chair<br/> <br/></p>
</div>
<div class="col-md-2">
<h4>Ritvik K.</h4>
<p>Vice-Chair<br/> <br/></p>
</div>
<div class="col-md-2">
<h4>Justin C.</h4>
<p>Workshop Coordinator<br/> <br/></p>
</div>
</div>
</div>
<p class="text-center"><a href="https://twitter.com/PurdueCSociety"><i class="fa fa-twitter-square fa-4x"></i></a></p>
<br>
</div>
</div>
</div>
<!-- /.well -->
<?php include '../footer.php'; ?>