| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/HMCodingSnowMan/HMCodingSnowMan.github.io/master/app.js | [Back] [Original] |
(function(){
var app= angular.module("app",["ngRoute"]);
app.config(function($routeProvider){
$routeProvider
.when("/main", {
templateUrl:"main.html"
})
.when("/college", {
templateUrl:"college.html"
})
.when("/cprojects", {
templateUrl:"cprojects.html"
})
.when("/pprojects", {
templateUrl:"pprojects.html"
})
.when("/work", {
templateUrl:"work.html"
})
.otherwise({redirectTo:"/main"});
});
}());
| Web Proxy Viewer | New URL | Original Page |