Angularjs ng-view does not work

The problem is incorrect usage of ng-app. Only declare ng-app once for your application, usually on the html element. Then declare other modules as dependencies of your main module. I put the ng-app declaration on the html tag and put your ng-routing in the app module, getting rid of the views module. http://plnkr.co/edit/btL2QMyHxhDLH7cxZ1YV You can … Read more