Ionic popover moving to another view

Hello
I am using popover in tabs app to move to about us page

  <ion-popover-view style="height: 175px">
    <ion-content>
      <div class="list">
        <a class="item" ui-sref="aboutus">
          About Us
        </a>
        <a class="item" ui-sref="feedback">
          Advertise With us
        </a>
      </div>
    </ion-content>
  </ion-popover-view>

i m successfully going to that view but what i want is that a back button should appear so that i can go back to the view where i came from and the tabs on the bottom but neither the back button appears nor does the tabs on bottom appear how can i go ahead and implement that

please help
app.js urlrouter

.state(‘aboutus’, {
url: ‘/tab-aboutus’,
templateUrl: ‘templates/tab-aboutus.html’
})
.state(‘feedback’, {
url: ‘/feedback’,
templateUrl: ‘templates/feedback.html’
})