Skip to content

Commit 7eee978

Browse files
committed
Code Hackathon #7 Update
1 parent 567f216 commit 7eee978

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

assets/poster/w7.png

877 KB
Loading

schedule.html

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<head>
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6-
6+
77
<!-- OpenGraph tags -->
88
<meta property="og:description" content="We are a team of students in GITAM that aim to promote coding as being fun, challenging & most of all 'Not Boring'. In collaboration with the Department of CSE, we organise frequent coding competitions called 'Code Hackathons' on a bi-weekly basis on Saturday afternoons (except for during important college events). We may on occasion also take classes to discuss and try out various programming techniques and challenges to further enhance your skills.">
99
<meta property="og:image" content="https://codehackathon.github.io/assets/brand/main-logo.png">
1010
<meta property="og:site_name" content="Code Hackathon">
1111
<meta property="og:title" content="Code Hackathon">
1212
<meta property="og:type" content="website">
1313
<meta property="og:url" content="https://codehackathon.github.io/">
14-
14+
1515
<!-- Favicon & Theme -->
1616
<link rel="apple-touch-icon" sizes="114x114" href="assets/favicon/apple-icon-114x114.png">
1717
<link rel="apple-touch-icon" sizes="120x120" href="assets/favicon/apple-icon-120x120.png">
@@ -30,28 +30,28 @@
3030
<meta name="msapplication-TileColor" content="#12002D">
3131
<meta name="msapplication-TileImage" content="assets/favicon/ms-icon-144x144.png">
3232
<meta name="theme-color" content="#12002D">
33-
33+
3434
<title>Schedule · Code Hackathon · GITAM</title>
35-
35+
3636
<!-- Bootstrap core CSS -->
3737
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
38-
38+
3939
<!-- Custom CSS -->
4040
<link href="style.css" rel="stylesheet">
4141
</head>
4242

4343
<body>
4444
<div id="wrapper" class="container-fluid">
4545
<!-- Navigation section -->
46-
<nav class="navbar navbar-expand-xl fixed-top">
46+
<nav class="navbar navbar-expand-xl fixed-top">
4747
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#PrimaryMenu" aria-controls="menu" aria-expanded="false" aria-label="Toggle Navigation">
4848
<span class="navbar-toggler-icon"></span>
4949
</button>
50-
50+
5151
<a class="navbar-brand" href="index">
5252
<img class="d-inline-block align-top" src="./assets/brand/main-logo.png" alt="Code Hackathon">
5353
</a>
54-
54+
5555
<div id="PrimaryMenu" class="collapse navbar-collapse">
5656
<ul class="navbar-nav ml-auto">
5757
<li class="nav-item">
@@ -72,18 +72,19 @@
7272
</ul>
7373
</div>
7474
</nav>
75-
75+
7676
<div id="Schedule" class="container">
7777
<div class="row">
7878
<div class="col-10 offset-1">
7979
<h1>Schedule</h1>
80-
<h3 class="text-md-center"><u>Up next:</u> Code Hackathon Week 7 coming soon.</h3>
80+
<h3 class="text-md-center"><u>Up next:</u> Code Hackathon Week 7 on 9<sup>th</sup> February, 2019 <a href="https://bit.ly/w7-ch" class="btn btn-success" target="_blank">Register Now!</a></h3>
81+
</div>
8182
</div>
8283
</div>
8384
</div>
84-
85+
8586
<!-- Current week's Poster -->
86-
<!-- <img class="poster" src="assets/poster/rh1.jpg" alt="Rookie Hour #1 Poster"> -->
87+
<img class="poster" src="assets/poster/w7.png" alt="Code Hackathon #7 Poster">
8788

8889
<div id="suggestion-grid" class="container">
8990
<div class="row">
@@ -99,7 +100,7 @@ <h5>Previous Questions</h5>
99100
</div>
100101
</div>
101102
</div>
102-
103+
103104
<footer id="End-Game" class="container-fluid">
104105
<div class="container">
105106
<div class="row">
@@ -109,12 +110,12 @@ <h2>Questions? We'd be happy to help! <a href="contact" class="btn">Contact Us</
109110
</div>
110111
</div>
111112
</footer>
112-
113+
113114
<!-- Bootstrap core JavaScript -->
114115
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
115116
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
116117
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
117-
118+
118119
<script>
119120
$(function () {
120121
var navbar = $(".navbar")
@@ -127,13 +128,13 @@ <h2>Questions? We'd be happy to help! <a href="contact" class="btn">Contact Us</
127128
return item;
128129
}
129130
});
130-
131+
131132
// Close navbar on click
132133
$('.nav-link').on('click', function () {
133134
$('.navbar-collapse').collapse('hide');
134135
});
135136
});
136137
</script>
137-
138+
138139
</body>
139140
</html>

0 commit comments

Comments
 (0)