Have generate my route in my app:
app.config( function($routeProvider){
$routeProvider
.when('/',{
templateUrl: './partials/home/home.html',
controller: 'mainCtrl'}
)
.when('/article',{
templateUrl: './partials/article/article.html',
controller: 'articleCtrl'}
)
.otherwise({
redirectTo: '/'
});
});
It's working !
But link was bas :( I create my link like that :
<div class="read-more"><a href="#article">Lire plus...</a></div>
my bad link: http://localhost:10001/#!/#article
vs the good link was : http://localhost:10001/#!/article
Who was wrong ?
thx
PS I use node lite-server