-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
324 lines (312 loc) · 16.8 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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-171546866-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-171546866-1');
</script>
<title>
KamandPrompt | IIT Mandi Programming Club
</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="KamandPrompt is the Programming Club of IIT Mandi. We are responsible for creating an engaging coding culture in IIT Mandi and preparing students for competitons like GSOC, ICPC etc">
<meta name="author" content="KamandPrompt - Webdevs">
<meta name="keywords" content="kamand prompt, iit mandi, iit, mandi, competitive, programming, club, gsoc, development, icpc">
<!--Open graph meta tags -->
<meta property="og:title" content="Kamand Prompt | IIT Mandi Programming Club" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://pc.iitmandi.co.in" />
<meta property="og:image" content="img/kamandpromptlogo.svg" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans|Candal|Alegreya+Sans">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.png">
</head>
<body onload="addCopyright()">
<!-- Nav Bar -->
<div class="bro">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#myNavbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="img/kamandpromptlogo.svg" alt="KamandPrompt IIT Mandi Programming Club"></a>
</div>
<div id="myNavbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="navlink dropdown">
<a class="nav-link dropdown-toggle" href="#" id="subclubs" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span id="open"> < </span> SubClubs <span id="open"> />
</a>
<div class="dropdown-menu" aria-labelledby="subclubs">
<a class="dropdown-item sub_club" href="/heuristics/HTML"><span id="open"> < </span>Heuristics<span id="open"> /></a>
<span>-----------------------------------</span>
<a class="dropdown-item sub_club" href="/ccc"><span id="open"> < </span>Competitive Coding Club<span id="open"> /></a>
<span>-----------------------------------</span>
<a class="dropdown-item sub_club" href="#"><span id="open"> < </span>Devprompt<span id="open"> /></a>
<span>-----------------------------------</span>
<a class="dropdown-item sub_club" href="https://saic.iitmandi.co.in"><span id="open"> < </span>SAIC<span id="open"> /></a>
</div>
</li>
<li class="navlink"><a href="#projects"><span id="open"> < </span>Projects<span id="open"> /> </a></li>
<li class="navlink"><a href="#team"><span id="open"> < </span>Team<span id="open"> /> </a></li>
<li class="navlink"><a href="/gsoc"><span id="open"> < </span>GSoC<span id="open"> /> </a></li>
<li class="navlink"><a href="/blog"><span id="open"> < </span>Blog<span id="open"> /> </a></li>
<li class="navlink"><a href="/hof"><span id="open"> < </span>Hall Of Fame<span id="open"> /> </span></a></li>
<li class="navlink"><a href="#contact"><span id="open"> < </span>Contact Us<span id="open"> /> </a></li>
</ul>
</div>
</div>
</nav>
</div>
<!-- Nav Bar Ends -->
<!--Banner-->
<div class="dark">
<!-- LINE#49 This line below was commented out on request. activate to see the difference in banner. (04/07/2018) -->
<!-- <h1>Programming Club<br>IIT Mandi</h1> -->
<div class="image"></div>
</div>
<div class="banner">
<div class="bg-color text-center">
<div class="container height100">
<div class="text-center">
<div class="text-border">
<h2 class="text-dec">KamandPrompt</h2>
<h3 class="text-desc">The Programming Club Of IIT Mandi</h3>
</div>
<div class="intro-para text-center">
<span class="big-text" id="motto"></span><span id="cursor">_</span>
</div>
</div>
</div>
<div class="small-text no-style bottom-center">
<a class="scroll-down" href="#about">Scroll down to learn more</a>
</div>
</div>
</div>
<!--/ Banner-->
<!-- Contents -->
<!-- About Us -->
<div class="container contentContainer" id="about">
<h2 class="contentHeader">About Us</h2>
<div class="row container">
<div class="col-lg-4 col-sm-6 text-center mb-4 aboutColumn">
<i class="far fa-lightbulb aboutIcons"> </i>
<h3>Innovate</h3>
<p>We try innovate and foster technical activities and create an engaging coding culture in the fields like Competitive Programming and Development.</p>
</div>
<div class="col-lg-4 col-sm-6 text-center mb-4 aboutColumn">
<i class="fas fa-trophy aboutIcons"> </i>
<h3>Events</h3>
<p>We organise Programming Contests, Hackathons and Coding Classes to prepare students for events like <a href = "./icpc" style="color: #303442;" > ACM ICPC </a> and GSoC and bring out the best in them.</p>
</div>
<div class="col-lg-4 col-sm-6 text-center mb-4 aboutColumn smallScreenBottom">
<i class="fab fa-osi aboutIcons"> </i>
<h3>Open Source</h3>
<p>We develop cool stuff that benefits everyone in the campus and encourage Open Source Development among the students in the campus.</p>
</div>
</div>
</div>
<!-- About Us End -->
<!-- Projects -->
<div class="container contentContainer" id="projects">
<h2 class="contentHeader">Projects</h2>
<div class="row container-fluid text-center">
<div class="col-lg-6 col-sm-6">
<div class="box-content">
<h1 class="tag-title">Inventory Management</h1>
<hr>
<p>Inventory Manager is an online portal for the proper management of the equipments of the different clubs of IIT Mandi. It provides a platform for users to book and issue equipments, and allows the club coordinators to issue the booked item
and keep a tab on the issuers and return dates. Inventory Manager has been built in Node.js and uses MongoDb for object based database. Its github repository is private currently.</p>
<br />
<a target="_blank" href="https://github.com/KamandPrompt/InventoryManager" class="btn btn-block btn-social btn-github repoLink text-center">
<i class="fab fa-github"></i> Learn More
</a>
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="box-content">
<h1 class="tag-title">Contacts Directory</h1>
<hr>
<p>An intranet directory that provide contact details of everyone at IIT Mandi to everyone at IIT Mandi. It employs a real-time elastic search to suggest predictions on the basis of characters already typed in segregated by batches and faculty/student.
It has been built on PHP and uses MongoDb for database.</p>
<br />
<a target="_blank" href="https://github.com/KamandPrompt/contacts-directory" class="btn btn-block btn-social btn-github repoLink text-center">
<i class="fab fa-github"></i> Learn More
</a>
</div>
</div>
</div>
<div class="row container-fluid text-center">
<div class="col-lg-6 col-sm-6">
<div class="box-content">
<h1 class="tag-title">Baat-Cheet</h1>
<hr>
<p>Baat Cheet is an anonymous chat platform that that allows people to chat anonymously in a common channel on any topics or form separate groups to discuss things of common interest protecting their privacy. It had seen more than 100 active
members at one time on day zero. Baat Cheet has been built in Node.js and employs socket.io for real time communication.</p>
<br />
<a target="_blank" href="https://github.com/KamandPrompt/baat-cheet" class="btn btn-block btn-social btn-github repoLink text-center">
<i class="fab fa-github"></i> Learn More
</a>
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="box-content">
<h1 class="tag-title">SNTC Server</h1>
<hr />
<p>This is a large scale ongoing project to setup the student server for SNTC IIT Mandi. It is aim to provide most open source communication and knowledge based tools internally on this server and also provide students to host their projects
on it with a Heroku type way. It also includes a dream to have our students' own oauth system much in line of OpenID.</p>
<br />
<!-- <a href="#" class="btn btn-block btn-social btn-github repoLink text-center"> -->
<a target="_blank" href="https://iitmandi.co.in" class="btn btn-block btn-notgithub repoLink text-center">
<!-- <i class="fab fa-github"></i> -->Check Website
</a>
</div>
</div>
<div class="contributors_container">
<a href="project_contributors"><button class="btn contributors">See Project Contributors</button></a>
</div>
</div>
</div>
<!-- Projects End -->
<!-- Team -->
<div class="container contentContainer" id="team">
<h2 class="contentHeader">Team</h2>
<h4 class="contentHeader designation">Coordinators</h4>
<div class="row team-box">
<div class="col-lg-3 col-sm-4 text-center member">
<img class="img-circle img-responsive img-center team-img" src="img/subhash.jpg" alt="Subhash Suman">
<h3>Subhash Suman</h3>
<div>
<a target="_blank" href="https://www.facebook.com/subhash.suman.186"><i class="fab fa-facebook-f social-button"></i></a>
<a target="_blank" href="https://github.com/subhashsuman01"><i class="fab fa-github social-button"></i></a>
</div>
</div>
<div class="col-lg-3 col-sm-4 text-center member">
<img class="img-circle img-responsive img-center team-img" src="img/saransh.jpg" alt="Saransh Jain">
<h3>Saransh Jain</h3>
<div>
<a target="_blank" href="https://www.facebook.com/saransh.jain.921677"><i class="fab fa-facebook-f social-button"></i></a>
<a target="_blank" href="https://github.com/Saransh0905"><i class="fab fa-github social-button"></i></a>
</div>
</div>
</div>
<hr />
<h4 class="contentHeader designation">ACM Chapter</h4>
<div class="row team-box">
<div class="col-lg-3 col-sm-4 text-center member">
<img class="img-circle img-responsive img-center team-img" src="img/kartik.jpg" alt="Kartik Kathuria">
<h3>Kartik Kathuria</h3>
<div>
<a target="_blank" href="https://www.facebook.com/kartik.kathuria.146/"><i class="fab fa-facebook-f social-button"></i></a>
<a target="_blank" href="https://github.com/kartik1000/"><i class="fab fa-github social-button"></i></a>
</div>
</div>
<div class="col-lg-3 col-sm-4 text-center member">
<img class="img-circle img-responsive img-center team-img" src="img/vyom.jpg" alt="Vyom Goel">
<h3>Vyom Goel</h3>
<div>
<a target="_blank" href="https://www.facebook.com/vyom.goel.12"><i class="fab fa-facebook-f social-button"></i></a>
<a target="_blank" href="https://github.com/Vyom16"><i class="fab fa-github social-button"></i></a>
</div>
</div>
<div class="col-lg-3 col-sm-4 text-center member">
<img class="img-circle img-responsive img-center team-img" src="img/kairav.jpg" alt="Kairav Bansal">
<h3>Kairav Bansal</h3>
<div>
<a target="_blank" href="https://www.facebook.com/kairav.bansal.3"><i class="fab fa-facebook-f social-button"></i></a>
<a target="_blank" href="https://github.com/karry26"><i class="fab fa-github social-button"></i></a>
</div>
</div>
</div>
<h4 class="contentHeader designation">Heuristics</h4>
<div class="row team-box">
<div class="col-lg-3 col-sm-4 text-center member">
<img class="img-circle img-responsive img-center team-img" src="img/vyom.jpg" alt="Vyom Goel">
<h3>Vyom Goel</h3>
<div>
<a target="_blank" href="https://www.facebook.com/vyom.goel.12"><i class="fab fa-facebook-f social-button"></i></a>
<a target="_blank" href="https://github.com/Vyom16"><i class="fab fa-github social-button"></i></a>
</div>
</div>
<div class="col-lg-3 col-sm-4 text-center member">
<img class="img-circle img-responsive img-center team-img" src="img/nidhi.jpg" alt="Nidhi Jain">
<h3>Nidhi Jain</h3>
<div>
<a target="_blank" href="https://www.facebook.com/profile.php?id=100026427400017"><i class="fab fa-facebook-f social-button"></i></a>
<a target="_blank" href="https://github.com/nidhijainpnp"><i class="fab fa-github social-button"></i></a>
</div>
</div>
</div>
<h4 class="contentHeader designation">ACM -W Chapter</h4>
<div class="row team-box">
<div class="col-lg-3 col-sm-4 text-center member">
<img class="img-circle img-responsive img-center team-img" src="img/nishita.jpg" alt="Nishita Sharma">
<h3>Nishita Sharma</h3>
<div>
<a target="_blank" href="https://www.facebook.com/profile.php?id=100027784989828"><i class="fab fa-facebook-f social-button"></i></a>
<a target="_blank" href="=https://github.com/Nishita2001"><i class="fab fa-github social-button"></i></a>
</div>
</div>
<div class="col-lg-3 col-sm-4 text-center member">
<img class="img-circle img-responsive img-center team-img" src="img/ruchika.jpg" alt="Ruchika Sharan">
<h3>Ruchika Sharan</h3>
<div>
<a target="_blank" href="https://www.facebook.com/ruchika.sharan.75"><i class="fab fa-facebook-f social-button"></i></a>
<a target="_blank" href="https://github.com/Ruchika06"><i class="fab fa-github social-button"></i></a>
</div>
</div>
</div>
</div>
<!-- Team End -->
<!-- Contents End -->
<!-- Footer -->
<div class="footerhead">
<div class="container footerWrapper">
<div>
<div class="col-xs-12 col-sm-4 col-md-4 row1">
<h3>External Links</h3>
<ul class="list-unstyled quick-links">
<li><a href="https://kamandprompt.zulipchat.com/" class="footerNav" target="_blank"><i class="fas fa-comments socialIcons fa"></i>Join us on ZulipChat</a></li>
<li><a href="https://www.facebook.com/groups/KamandPrompt/" class="footerNav" target="_blank"><i class="fas fa-users socialIcons fa"></i> Join us on Facebook</a></li>
</ul>
</div>
</div>
<div>
<div class="col-xs-12 col-sm-4 col-md-4 row2" id="contact">
<h3>Contact Us</h3>
<ul class="list-unstyled quick-links">
<li><a class="footerNav"><i class="fa fa-map-marker socialIcons"></i> Indian Institute of Technology Mandi,<br /><span id="spacing"></span>Kamand (H.P.) - 175005</a></li>
<li><a class="footerNav" href="mailto:[email protected]"><i class="fa far fa-envelope socialIcons"></i> [email protected]</li></a>
</ul>
</div>
</div>
</div>
<br>
</div>
<footer class="footerend">
<div class="medialink-container">
<a href="https://www.facebook.com/prog.iitmandi/" target="_blank"><i class="fab fa-facebook socialIcons"></i></a>
<a href="https://github.com/KamandPrompt/" target="_blank"><i class="fab fa-github socialIcons"></i></a>
</div>
<p>
© <span id="copyright"></span> <a class="footerlink" href="#"><strong>Kamand</strong>Prompt</a> - <a class="footerlink" href="https://www.iitmandi.ac.in" target="_blank">IIT Mandi</a>. <span id="rights">All Rights Reserved.</span>
</p>
</footer>
<!-- Footer ends -->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>