-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (35 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="UTF-8">
<title ng-bind="title">Bloggie</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,500,100' rel='stylesheet' type='text/css'>
<link href="bower_components/font-awesome/css/font-awesome.min.css" rel='stylesheet' type='text/css'>
<link href="assets/css/myApp.css" rel='stylesheet' type='text/css'>
</head>
<body ng-cloak>
<header>
<div class="container">
<app-logo></app-logo>
<social-icons></social-icons>
</div>
</header>
<main>
<div class="container">
<ng-view></ng-view>
</div>
</main>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<script src="bower_components/angular-messages/angular-messages.min.js"></script>
<script src="app/app.modules.js"></script>
<script src="app/app.routes.js"></script>
<script src="app/components/logo.component.js"></script>
<script src="app/components/social-icons.component.js"></script>
<script src="app/components/posts-list.component.js"></script>
<script src="app/components/post-item.component.js"></script>
<script src="app/components/post.component.js"></script>
<script src="app/components/contact.component.js"></script>
<script src="app/services/post.service.js"></script>
</body>
</html>