app.config(["$routeProvider", function($routeProvider) {
$routeProvider
.when("/", {
templateUrl : "views/home.html",
controller : "HomeController",
title: "Home"
})
.when("/about", {
templateUrl : "views/about.html",
controller : "AboutController",
title: "About"
});
}]);
this is how views are handeld in my page
I have an Angular app that has a single main template index.html with multiple views. the problem is
the content or the links are getting indexed by google