-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathAngularRoute.html
59 lines (58 loc) · 2.13 KB
/
AngularRoute.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
57
58
59
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.css">
<script src="../node_modules/angular/angular.js"></script>
<script src="../node_modules/angular/angular-route.js"></script>
<script>
var app=angular.module("DemoApp",['ngRoute']);
app.config(function($routeProvider){
$routeProvider
.when("/",{
templateUrl:"home.html"
})
.when("/home",{
templateUrl:"home.html"
})
.when("/about",{
templateUrl:"about.html"
})
.when("/contact",{
templateUrl:"contact.html"
})
.otherwise({
template:"<h2>Page Not Found</h2>"
})
})
app.controller("HomeController", function($scope){
})
</script>
</head>
<body ng-app="DemoApp" ng-controller="HomeController">
<div class="container">
<table width="800" border="1" cellspacing="4" cellpadding="4" align="center">
<tr class="bg-primary" align="center">
<td colspan="2">NareshIT | Hyderabad</td>
</tr>
<tr height="250">
<td width="200">
<ul>
<li><a href="#!home">Home</a></li>
<li><a href="#!about">About</a></li>
<li><a href="#!contact">Contact</a></li>
</ul>
</td>
<td width="600">
<ng-view></ng-view>
</td>
</tr>
<tr class="bg-success" align="center">
<td colspan="2">
© copyright 2019 <br>
Faculty | Courses | Projects
</td>
</tr>
</table>
</div>
</body>
</html>