forked from ChallengeHunt/challengehunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (65 loc) · 3.31 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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='css/pt-sans.css' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/style.css"> <!-- Resource style -->
<link rel="stylesheet" type="text/css" href="/css/jquery.tokenize.css" />
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='css/inconsolata-700.css' rel='stylesheet' type='text/css'>
<link href='css/great-vibes.css' rel='stylesheet' type='text/css'>
<!-- <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'> -->
<link href='css/roboto-condensed.css' rel='stylesheet' type='text/css'>
<!-- <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'> -->
<script src="/js/jquery-1.11.2.min.js"></script>
<script src="/js/modernizr.js"></script> <!-- Modernizr -->
<title>Challenge Hunt</title>
</head>
<body>
<header>
<!-- <h1 style="font-family: 'Pacifico', cursive; letter-spacing: 2px;">Challenge Hunt</h1> -->
<h1 style="font-family: 'Great Vibes', cursive; letter-spacing: 3px; font-weight: 500; font-size: 50px;"><b>Challenge Hunt</b></h1>
<!-- <h1 style="font-family: 'Kaushan Script', cursive;">Challenge Hunt</h1> -->
</header>
<div id="select-menu">
<!-- <center><i id="loader-select-menu" class="fa fa-spinner fa-pulse fa-3x" style="margin-top:5px"></i></center> -->
<select id="tokenize" multiple="multiple" class="tokenize-sample">
</select>
</div>
<script src="/js/tokenize-plugin.js"></script>
<div id="tabs">
<!-- <center><i id="loader-drop-down" class="fa fa-spinner fa-pulse fa-3x" style="margin-top:5px"></i></center> -->
<div id="c-tabs" class="cd-tabs">
<nav>
<ul class="cd-tabs-navigation">
<li class="active"><a data-content="inbox" class="selected" href="#0"><i class="fa fa-circle fa-lg" ></i><br>Active</a></li>
<li class="upcoming"><a data-content="new" href="#0"><i class="fa fa-calendar fa-lg"></i><br>Upcoming</a></li>
<li class="archived"><a data-content="gallery" href="#0"><i class="fa fa-archive fa-lg"></i><br>Archived</a></li>
</ul> <!-- cd-tabs-navigation -->
</nav>
<ul class="cd-tabs-content">
<li data-content="inbox" class="selected" id="active-contests">
</li>
<li data-content="new" id="pending-contests">
</li>
<li data-content="gallery" id="archived-contests">
</li>
</ul> <!-- cd-tabs-content -->
</div>
</div>
<footer>
<a href='https://github.com/ChallengeHunt/challengehunt/issues/new' target='_blank' style="float:left;">Bugs/Suggestions?</a>
<a href="https://github.com/ChallengeHunt/challengehunt" target='_blank' id="center"><i class="fa fa-github"></i> Star Repo</a>
<a href='http://challengehunt.github.io/challengehunt/help.html' target='_blank' style="float:right;">Help</a>
</footer>
</div> <!-- cd-tabs -->
<script type="text/javascript" src="/js/helpers.js"></script>
<script type="text/javascript" src="/js/jquery.tokenize.js"></script>
<script src="/js/tokenize-plugin.js"></script>
<script type="text/javascript" src="data.js"></script>
<script src="js/main.js"></script> <!-- Resource jQuery -->
<script src="js/ga.js"></script>
</body>
</html>