How to open an external link inside ionic app content tag

I a trying to build an application in ionicframework, and i want to open an external link inside a template, so that the header remains intact and i can go back to previous screen upon pressing back button in header.

i have used Cordova inappbrowser plugin, but it is opening the link without headers, and i cannot navigate backward once it is opened

I have added inappbrowser plugin in ionic plugins

I am using this below template for my application

<script id="templates/link_page.html" type="text/ng-template">
      <ion-view view-title="External Link">
        <ion-content>
          <a href="window.open('http://www.google.com', '_blank', 'location=no')">Open this link</a>
        </ion-content>
      </ion-view>
 </script>

i want to open this link inside