-
Notifications
You must be signed in to change notification settings - Fork 1
/
leaderboard.html
executable file
·42 lines (35 loc) · 1.59 KB
/
leaderboard.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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Startupbus Leaderboard</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/fontello.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:200' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<div class="spacer container">
</div>
<div class="ribbon-wrapper">
<h2 class="ribbon"><img src="/images/trophy.png" /><span>Startupbus Leaderboard</span></h2>
</div>
<div class="container">
<ol id="startup-list">
</ol>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="js/main.js"></script>
</body>
</html>