in my file home.js have
.state('app.profile', {
url : '/profile',
views : {
'appContent' : {
templateUrl: '../templates/profile.html',
controller: 'HomeController'
}
}
})
in my file profile.html have this
<ion-view title="Profile">
<ion-content>
<!--somethings here-->
</ion-content>
</ion-view>
My directory
js
home.js
templates
profile.html
But I can't make it work. Please help me to fix this error!