Skip to content

Instantly share code, notes, and snippets.

@xaiwant
Created May 31, 2018 01:09
Show Gist options
  • Save xaiwant/04084d27b228292538afd3d81a50ded2 to your computer and use it in GitHub Desktop.
Save xaiwant/04084d27b228292538afd3d81a50ded2 to your computer and use it in GitHub Desktop.
var myApp = angular.module("myApp", ["ngRoute"]);
myApp.config(function($routeProvider) {
$routeProvider
.when("/about", {
template: '<p>Angular Page with route</p>'
})
.when("/career", {
templateUrl : "career.htm"
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment