-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
70 lines (53 loc) · 1.54 KB
/
config.js
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
60
61
62
63
64
65
66
67
68
69
(function() {
angular
.module("WebAppMaker")
.config(Config);
function Config($routeProvider) {
$routeProvider
.when("/", {
templateUrl: "main/home.html"
})
.when("/home", {
redirectTo: "/"
})
.when("/contact", {
templateUrl: "main/contact.html"
})
.when("/blog", {
templateUrl: "main/blog.html"
})
.when("/archive", {
templateUrl: "main/archive.html"
})
.when("/stitch1", {
templateUrl: "item/stitch1.html"
})
.when("/stitch7", {
templateUrl: "item/stitch7.html"
})
.when("/stitch10", {
templateUrl: "item/stitch10.html"
})
.when("/stitch11", {
templateUrl: "item/stitch11.html"
})
.when("/stitch13", {
templateUrl: "item/stitch13.html"
})
.when("/stitch14", {
templateUrl: "item/stitch14.html"
})
.when("/stitch16", {
templateUrl: "item/stitch16.html"
})
.when("/stitch17", {
templateUrl: "item/stitch17.html"
})
.when("/#carousel-example-generic", {
templateUrl: "item/stitch1.html"
})
.otherwise ({
redirectTo: "/"
});
}
})();