forked from eBildungslabor/lebenslauf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
40 lines (38 loc) · 1.01 KB
/
app.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
var resumeApp = angular.module('resumeApp', ['ngMaterial', "ngSanitize", "ui.router"]);
resumeApp.config(function($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise('/tab/dash');
$stateProvider
.state('view1', {
url: "/home",
templateUrl: "partials/home.html"
})
.state('view2', {
url: "/summary",
templateUrl: "partials/summary.html"
})
.state('view3', {
url: "/basicinfo",
templateUrl: "partials/basicinfo.html"
})
.state('view4', {
url: "/experiences",
templateUrl: "partials/experiences.html"
})
.state('view5', {
url: "/projects",
templateUrl: "partials/projects.html"
})
.state('view6', {
url: "/education",
templateUrl: "partials/education.html"
})
.state('view7', {
url: "/skills",
templateUrl: "partials/skills.html"
})
.state('view8', {
url: "/download",
templateUrl: "partials/download.html"
})
;
})