-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html>
<title>Smash Weekly</title>
<head>
<link rel="icon" href="icons\favicon.ico" >
<link rel="stylesheet" type="text/css" href="main.css">
<script>
</script>
<!-- Polyfill(s) for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<body>
<div class="nav-bar">
<ul class="nav-list">
<li><a href="#"> <img class="project-m" src="src\project-m-logo.png" /></a></li>
<li><a class="list-element active" href="#">Home</a></li>
<li><a class="list-element" href="#">Players</a></li>
<li><a class="list-element" href="#">Tournaments</a></li>
<li><a class="list-element" href="#">Archive</a></li>
</ul>
</div>
<my-app></my-app>
</body>
<footer>(c) Brian Cabigon 2016 </footer>
</html>