var demoApp = angular.module('RoutingDemoApp', ['ngRoute']); demoApp.config(function ($routeProvider) { $routeProvider. when('/', { controller: 'homeController', templateUrl: 'views/home.html' }). when('/about', { templateUrl: 'views/about.html' }). when('/contact', { templateUrl: 'views/contact.html' }). otherwise({ redirectTo: '/' }); }); demoApp.controller('homeController', function ($scope) { $scope.name = "Olivia"; });