-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
243 lines (176 loc) · 7.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Clarkson University Applied Computer Science Labs</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--Font-->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet'
type='text/css'>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="shortcut icon" href="ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="ico/apple-touch-icon-57-precomposed.png">
<!-- SCRIPT
============================================================-->
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<!--HEADER ROW-->
<div id="header-row">
<div class="container">
<div class="row">
<!--LOGO-->
<div class="span3"><a class="brand" href="#"><img src="img/logo.png" /></a></div>
<!-- /LOGO -->
<!-- MAIN NAVIGATION -->
<div class="span9">
<div class="navbar pull-right">
<div class="navbar-inner">
<a data-target=".navbar-responsive-collapse" data-toggle="collapse"
class="btn btn-navbar"><span class="icon-bar"></span><span class="icon-bar"></span><span
class="icon-bar"></span></a>
<div class="nav-collapse collapse navbar-responsive-collapse">
<ul class="nav">
<li class="active"><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">The Labs <b
class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="cosi.html">COSI</a></li>
<li><a href="itl.html">ITL</a></li>
<li><a href="vr.html">VR Lab</a></li>
</ul>
</li>
<li><a href="resources.html">Resources</a></li>
<li><a href="friends.html">Friends and Alumni</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- MAIN NAVIGATION -->
</div>
</div>
</div>
<!-- /HEADER ROW -->
<div class="container">
<!--Carousel
==================================================-->
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="active item">
<div class="container">
<div class="row">
<div class="span8">
<div class="carousel-caption">
<h1>Welcome to the Applied Computer Science Labs</h1>
<p class="lead">The Applied Computer Science Labs at Clarkson University consist of
the Clarkson Open Source Institute and the Internet Teaching Lab. These labs,
which are part of the Computer Science department, are almost entirely
student-run, offering the opportunity to gain experience in managing both
facilities and projects. Both labs are located on the 3rd floor of the Science
Center in rooms SC334 and SC336 and were renovated due to the generosity of the
Rechler Family Foundation, the George I. Alden Trust, and a SUR grant from IBM
which resulted in a complete renovation in the Summer of 2006.
</p>
</div>
</div>
<div class="span4" style="padding-top:150px;"> <img src="img/cslabs.jpg"></div>
</div>
</div>
</div>
</div>
</div>
<!-- /Carousel -->
<!-- Feature
==============================================-->
<div class="row feature-box">
<div class="span12 cnt-title">
<h1>Our Labs</h1>
<span>The labs are open to all students and faculty whenever someone is in</span>
</div>
<div class="span4">
<h2>COSI</h2>
<p>
The Clarkson Open Source Institute (SC 336) is a lab that promotes Open Source Software (OSS)
</p>
<a href="cosi.html">Read More →</a>
</div>
<div class="span4">
<h2>ITL</h2>
<p>
The ITL (SC 334) is one of the few Internet Teaching Lab's in New York State. Classes are taught
here and events such as the ACM preliminary programming contest are held here.
</p>
<a href="itl.html">Read More →</a>
</div>
<div class="span4">
<h2>VR Lab</h2>
<p>
The VR Lab focuses on research in Computer Games, Virtual Enviornments, and Computer Graphics.
</p>
<a href="vr.html">Read More →</a>
</div>
</div>
<!-- /.Feature -->
<div class="hr-divider"></div>
<!-- Row View -->
<div class="row">
<!--<div class="span6"><img src="img/responsive.png"></div>-->
<div class="span12">
<h1>Want to learn more?</h1>
<p>If you are interested in joining the labs, learning more, and/or working in the labs for course
credit, feel free to stop by any time the lab is open to look around and talk with current students
and faculty. You can also find more information about each lab in particular on the "The Labs" pages
on this website or from each lab's individual website. You may also contact the lab advisors which
are located on the "Contact" page of this website. </p>
<a href="contact.html">Contact us! →</a>
</div>
<div class="span12">
<h1>Want to collaborate with the labs?</h1>
<p>Are you and your team interested in collaborating with you or using lab resources in your project? We
welcome you to reach out to our faculty advisor Jeanna Matthews (<a href="mailto:[email protected]">[email protected]</a>).
She will discuss your project with you and help you navigate the options for working with us. A typical process would
include making plans to attend one of our weekly meetings (usually Wednesday evenings) to introduce
yourself and describe your project. Dr. Matthews and the Lab Directors will help introduce you to lab
members who may be able to help you with resources that might help your project. We ask that you come
back periodically to report on the status of your project and when you are done give a presentation
about the results of your work. We are an open community and ask that those benefiting from our lab
resources and community also participate in sharing news of their work with lab members so that we can
all grow together as a community. You are also welcome and encouraged to join our community, but periodic
reporting works as well. </p>
</div>
</div>
</div>
<!-- /.Row View -->
<!--Footer
==========================-->
<footer>
<div class="container">
<div class="row">
<div class="span6">Clarkson Open Source Institute <br>
<small>Clarkson University | Science Center 336</small>
</div>
<!--Phillip Andrews added link to the repo using the div below.-->
<div class="span6">Visit the <a href="https://github.com/COSI-Lab/cslabs">repo</a> to view on GitHub.</div>
</div>
</div>
</footer>
<!--/.Footer-->
</body>
</html>