-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (41 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!-- Site Properities -->
<title>Polymer - Demo</title>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Open+Sans:300italic,400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="bower_components/semantic/build/packaged/css/semantic.css">
<link rel="stylesheet" type="text/css" href="css/app.css">
<script src="bower_components/platform/platform.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script>
<script src="bower_components/semantic/build/packaged/javascript/semantic.js"></script>
<link rel="import" href="elements/stats-list-view.html">
</head>
<body id="home">
<header class="ui banner grid">
<h1 class="ui header inverted">NHL STATS</h1>
</header>
<div class="ui">
<nav class="ui menu">
<a class="item active">Stats</a>
<a class="item">History</a>
<a class="item">Leaderboard</a>
<a class="item">Profile</a>
</nav>
</div>
<div class="ui page two column grid">
<div class="column">
<stats-list-view></stats-list-view>
</div>
<div class="column">
<stats-list-view></stats-list-view>
</div>
</div>
<footer class="banner">
</footer>
</body>
</html>