Ionic starter blank project

In my index.html:

<body>
<ion-pane>
<ion-view>
</ion-view>
</ion-pane>

A view template that I inject:

<ion-view>
<ion-content>
 <h1>asdfsd</h1> <!-- more content  -->
</ion-content>
</ion-view>

Nothing from my is visible or in the DOM for the above structure. Anything wrong??

But if i include in index.html it works but with a console error

Try

<body>
<ion-pane>
<ion-nav-view>
</ion-nav-view>
</ion-pane>