Skip to content

Commit 7f8e9d9

Browse files
committed
ADD CTF counter
1 parent cff5ef1 commit 7f8e9d9

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed

ctf/2017/index.html

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="description" content="KAIST IS-521 course">
8+
<meta name="author" content="Sang Kil Cha">
9+
<link rel="shortcut icon" type='image/x-icon' href="/favicon.ico" />
10+
11+
<title>KAIST IS-521</title>
12+
13+
<link href="../../css/bootstrap.min.css" rel="stylesheet">
14+
<link href="../../css/is521.css" rel="stylesheet">
15+
</head>
16+
17+
<body>
18+
19+
<!-- Begin page content -->
20+
<div class="container">
21+
<div class="page-header">
22+
<h1>IS-521 CTF</h1>
23+
</div>
24+
<h4>Begins in:</h4>
25+
<div id="myclock"></div>
26+
</div>
27+
28+
<footer class="footer">
29+
<div class="container">
30+
<p class="text-muted">IS-521: Information Security Laboratory @ KAIST</p>
31+
</div>
32+
</footer>
33+
34+
<script src="../../js/jquery.min.js"></script>
35+
<script src="../../js/jquery.countdown.min.js"></script>
36+
<script>
37+
$("#myclock")
38+
.countdown("2017/05/31 14:30:00", function(event) {
39+
$(this).text(
40+
event.strftime('%D days %H:%M:%S')
41+
);
42+
});
43+
</script>
44+
45+
</body>
46+
</html>

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ <h1>Information Security Laboratory</h1>
3939
<li><b>2017</b>:
4040
[<a href="https://github.com/KAIST-IS521/2017-Spring">Git</a>]
4141
[<a href="http://softsec.kaist.ac.kr/courses/2017s-is521/">Web</a>]
42+
[<a href="./ctf/2017/">CTF</a>]
4243
</li>
4344
</ul>
4445
</p>

js/jquery.countdown.min.js

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/jquery.min.js

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)