-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (37 loc) · 2.24 KB
/
index.html
File metadata and controls
47 lines (37 loc) · 2.24 KB
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
<!DOCTYPE html>
<html>
<head>
<title>ngClassifieds</title>
<!-- Including all the script files needed for accessing resources-->
<link rel="stylesheet" href="node_modules/angular-material/angular-material.css"/>
<link rel="stylesheet" href="node_modules/mdi/css/materialdesignicons.min.css" media="all" type="text/css"/>
<link rel="stylesheet" href="css/style.css" type="text/css"/>
<!--Including all the script files needed for accessing resources-->
</head>
<body ng-app="ngClassifiedsapp" > <!--ng-controller="classifiedsCtrl"-->
<ui-view></ui-view>
<!--The actual body of the page starts here-->
<!-- <h1>This is the message <br/> {{message}}</h1>
<p>Name :<input type="text" placeholder="Enter your name" ng-model="name"></p>
<p>Address :<input type="text" placeholder="adress" ng-model="details.address"></p>
<p>Department :<input type="text" placeholder="dept" ng-model="details.dept"></p>
<h2>We have {{name}} from {{details.dept}} department living at {{details.address}} </h2>
<hello-my-world></hello-my-world>
<h1>{{name}}</h1>-->
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-material/angular-material.js"></script>
<script src="node_modules/angular-animate/angular-animate.js"></script>
<script src="node_modules/angular-aria/angular-aria.js"></script>
<script src="node_modules/angular-ui-router/release/angular-ui-router.js"></script>
<script src="scripts/app.js"></script>
<script src="components/classifieds/classifieds.ctr.js" type="text/javascript"></script>
<script src="components/classifieds/classifieds.fac.js" type="text/javascript"></script>
<script src="components/classifieds/new/classifieds.ctr.new.js" type="text/javascript"></script>
<script src="components/classifieds/edit/classifieds.ctr.edit.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.13.1/lodash.js" type="text/javascript"></script>
<!-- Firebase -->
<script src="https://cdn.firebase.com/js/client/2.2.4/firebase.js"></script>
<!-- AngularFire -->
<script src="https://cdn.firebase.com/libs/angularfire/1.2.0/angularfire.min.js"></script>
</body>
</html>