-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
95 lines (78 loc) · 4.5 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>RPI UPE</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/bootstrap.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="RPI UPE Homepage">
<meta name="author" content="Jerry Schneider">
</head>
<body>
<div class="container-narrow">
<div class="masthead">
<h2 class="muted">Rensselaer's Chapter of UPE</h2>
<ul class="nav nav-pills">
<li id="nav-home" class="active"><a href="index.html">Home</a></li>
<li id="nav-about"><a href="about.html">About</a></li>
<li id="nav-committees"><a href="committees.html">Committees</a></li>
<li id="nav-events"><a href="events.html">Events</a></li>
<li><a href="portfolios.html">Portfolios</a></li>
<li id="nav-projects"><a href="projects.html">Projects</a></li>
<li id="nav-tutoring"><a href="tutoring.html">Tutoring</a></li>
<li id="nav-photos"><a href="photos.html">Photos</a></li>
</ul>
</div>
<hr>
<div class="jumbotron">
<h1>Upsilon Pi Epsilon</h1>
<p class="lead readable">Welcome to the <a href="http://www.rpi.edu/">Rensselaer Polytechnic Institute</a> chapter of <a href="http://upe.acm.org/">Upsilon Pi Epsilon</a>, the only international honors society for the computing and information disciplines. Our membership consists of outstanding undergraduate and graduate students in the fields of Computer Science, Information Technology, and Computer Engineering. Members are chosen not only for their scholastic achievement in a computing field, but also for distinguishing themselves as true professionals by meeting the standards of the society. Members also provide a number of services to the Rensselaer community through tutoring services and remediation sessions.</p>
<!-- No longer doing paper applications
<p>Applications due noon on Wednesday, November 15th.<br />For a paper application, go <a href="fall2017-app.pdf">here</a></p>
-->
<p class="lead">Follow us on <a href="https://github.com/RPI-UPE">GitHub</a>, <a href="https://twitter.com/rpiupe">Twitter</a>, <a href="https://www.instagram.com/rpiupe">Instagram</a>, and <a href="https://www.facebook.com/rpiupe">Facebook</a> too!</a>
</div>
<hr>
<div class="row-fluid marketing">
<div class="span6">
<a href="events.html">
<h4>Student/Professor Dinner</h4>
<p>Get more information on this year's Student/Professor Dinner.</p>
</a>
<a href="constitution.html">
<h4>Constitution</h4>
<p>View the constitution which has information about all of the rules, regulations, and processes of RPI's chapter of UPE.</p>
</a>
<a href="bylaws.html">
<h4>By-Laws</h4>
<p>View the UPE By-Laws.</p>
</a>
</div>
<div class="span6">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSehowS7bY8l0oDoQ--HAx6A-vhu_Z5yiM0ZIFEtM3axHUuueA/viewform?usp=sf_link">
<h4>Programming Competition</h4>
<p>Test your programming skills at UPE's Programming Competition... maybe you'll win an iPad or a PS3!</p>
</a>
<a id="news-application" href="https://forms.gle/cXGPJpKGskTN4r4x9">
<h4>Membership Applications</h4>
<p>Apply to become a member of UPE! Applications are currently open until 11:59PM of Nov. 4 2024.</p>
</a>
</div>
</div>
</div>
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="javascripts/jquery.js"></script>
<script type="text/javascript" src="javascripts/bootstrap.js"></script>
<script type="text/javascript" src="javascripts/tooltip.js"></script>
<script type="text/javascript">
$(function (){
tooltip.showRepeat($('#item-io'), 'UPE I/O', "Join us for UPE I/O, an event where you can get hands on experience with topics in CS!", null, 'top') ||
tooltip.showRepeat($('#nav-tutoring'), 'Get Help in Class', "You can get help in any of your CS courses by signing up to be tutored by a member of UPE!") ;
//||
//tooltip.showRepeat($('#btnJoin'), 'Join UPE', "Make sure you submit your application to join UPE before it's too late!", null, 'right');
});
</script>
</body>
</html>