-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en" ng-app="soccerApp" ng-controller="mainController">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title ng-bind="Page.title()"></title>
<base href="/" />
<!--[if IE]><link rel="shortcut icon" href="static/images/favicon.ico"><![endif]-->
<link rel="icon" href="static/images/favicon.png">
{% include 'stylesheets.html' %}
</head>
<body>
{% include 'navbar.html' %}
<div class="container">
<div class="row">
<!--<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main ng-cloak">-->
<div class="col-sm-12 main ng-cloak">
<div class="row">
<div class="page-header">
<h1 ng-bind="Page.header()"></h1>
</div>
</div>
<!-- angular templating -->
<!-- this is where content will be injected -->
<div app-view-segment="0" class="row anim"></div>
</div>
</div>
</div>
{% include 'javascripts.html' %}
</body>
</html>