-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.6 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
<!--
To change this template use Tools | Templates.
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A dynamically udpated table for the Premier League 2015/16 season">
<meta name="author" content="Chinmay Shaligram">
<meta charset="UTF-8">
<link href='https://fonts.googleapis.com/css?family=Maven+Pro|Playfair+Display' rel='stylesheet' type='text/css'>
<link href="css/skeleton.css" rel="stylesheet" />
<link href="css/main.css" rel="stylesheet" />
<!-- Include the AngularJS library -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.2/angular.min.js"></script>
<!-- Include the AngularJS routing library -->
<script src="https://code.angularjs.org/1.2.28/angular-route.min.js"></script>
</head>
<body ng-app="FootballApp">
<a href="/#/"><strong><< Back</strong></a>
<div ng-view>
</div>
<p class="footer">© Chinmay Shaligram. Built with class using <a href="https://angularjs.org/">AngularJS</a>, <a href="http://getskeleton.com/">Skeleton</a> and the <a href="http://api.football-data.org/index">Football Data API</a>.</p>
<!-- Modules -->
<script src="js/app.js"></script>
<!-- Controllers -->
<script src="js/controllers/MainController.js"></script>
<!-- Services -->
<script src="js/services/football.js"></script>
</body>
</html>