I am working on an Ionic application and I have implemented a built-in screen with three slides, text and a <a href="..."> tag to go directly to the start screen.
Now I noticed that when I click the <a href="..."> tag, they redirect me to the correct view, but the top panel on top has a back button where the hamburger menu icon should be.
Not sure if I am using the routing system correctly. What is the right to use routing and respect hierarchical representation?

HTML code (on board):
<ion-view view-title="WNRS" hide-nav-bar="true"> <ion-content scroll="false" has-header="true" class="has-header"> <ion-slide-box on-slide-changed="slideChanged(index)"> <ion-slide> <h4 class="padding">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque semper, sapien ac hendrerit porttitor, ipsum ante ultrices ipsum, eu congue arcu libero id enim.</h4> <br><br> <a ui-sref="app.base1"><h2>Play</h2></a> </ion-slide> <ion-slide> <h4 class="padding">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque semper, sapien ac hendrerit porttitor, ipsum ante ultrices ipsum, eu congue arcu libero id enim.</h4> <br><br> <a ui-sref="app.base1"><h2>Play</h2></a> </ion-slide> <ion-slide> <h4 class="padding">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque semper, sapien ac hendrerit porttitor, ipsum ante ultrices ipsum, eu congue arcu libero id enim.</h4> <br><br> <a ui-sref="app.base1"><h2>Play</h2></a> </ion-slide> </ion-slide-box> </ion-content> </ion-view>
Part of the app.js code (part of the routing):
// Routes app.config(function($stateProvider, $urlRouterProvider) { $stateProvider .state('app', { cache: false, url: '/app', abstract: true, templateUrl: 'components/sidebar_menu/menu.html' }) .state('app.walkthrough', { url: '/walkthrough', views: { 'menuContent': { templateUrl: 'views/walkthrough/walkthrough.html', controller: 'WalkthroughCtrl' } } }) .state('app.base1', { url: '/base1', views: { 'menuContent': { templateUrl: 'views/base1/base1.html', controller: 'Base1Ctrl' } } }) .state('app.base2', { url: '/base2', views: { 'menuContent': { templateUrl: 'views/base2/base2.html', controller: 'Base2Ctrl' } } }) .state('app.base3', { url: '/base3', views: { 'menuContent': { templateUrl: 'views/base3/base3.html', controller: 'Base3Ctrl' } } }) .state('app.add_question', { url: '/add_question', views: { 'menuContent': { templateUrl: 'views/add_question/add_question.html', controller: 'AddQuestionCtrl' } } }) $urlRouterProvider.otherwise('/app/walkthrough'); });