-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (46 loc) · 1.84 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
56
<!DOCTYPE html>
<html lang="fr" ng-app="app" ng-controller="mainCtrl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<base href="/">
<title ng-bind="pageTitle">Angular Base</title>
<meta name="description" content="" />
<!-- FAVICON -->
<link rel="icon" href="../assets/img/favicon.png" type="image/png">
<!-- CSS -->
<link rel="stylesheet" href="../assets/css/normalize.css">
<link rel="stylesheet" href="../assets/css/main.css">
<!-- JS -->
<script src="../assets/js/dist/vendors.js"></script>
<script src="../assets/js/dist/app.js"></script>
<!-- FAVICON -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.png">
<!-- Facebook meta -->
<meta property="og:type" content="website" />
<meta property="og:url" content=""/>
<meta property="og:title" content=""/>
<meta property="og:image" content="" />
<meta property="og:site_name" content=""/>
<!-- End Facebook meta -->
<!-- Twitter meta -->
<meta name="twitter:card" content="summary"/>
<meta name="twitter:url" content=""/>
<meta name="twitter:title" content=""/>
<meta name="twitter:site" content=""/>
<meta name="twitter:image" content=""/>
<!-- ANALYTICS -->
</head>
<body class="{{ bodyClass }}">
<h1>Hello world!</h1>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
</ul>
<!-- inject our views using ng-view -->
<main ng-view></main>
<!-- end inject -->
<footer></footer>
</body>
</html>