Ionic - ion-view title not working

I'm following some of the examples from the website and my current html is:

<!DOCTYPE html>
<html ng-app="Test">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>

    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
</head>

<body>
    <ion-nav-bar class="bar-positive">
        <ion-nav-back-button class="button-icon ion-arrow-left-c">
        </ion-nav-back-button>
    </ion-nav-bar>
    <ion-nav-view>
        <!-- Center content -->
    </ion-nav-view>

    <script type="text/ng-template" id="main.html">
        <ion-view view-title="Home">
            <ion-content >
                <p>
                   Test
                </p>
            </ion-content>
        </ion-view>
    </script>
</body>

</html>

And the js:

var app = angular.module('Test', ['ionic']);

app.config(function($stateProvider, $urlRouterProvider) {
  $urlRouterProvider.otherwise('/')

  $stateProvider.state('index', {
    url: '/',
    templateUrl: 'main.html',
    controller: 'TestCtrl'

  })
})

app.controller('TestCtrl', function($scope) {

})

Now the documentation says the view-title="Test" should fill the title in ion-navbar. But it doesn't seem to work. Anyone knows what is going wrong?

This should work,

<ion-view>
  <ion-nav-title> Your title here
  </ion-nav-title>
</ion-view>

It appears that it can be used in both ways,

<ion-view view-title="My Page">

or

<ion-nav-title>
    {{page.title}}
</ion-nav-title>

as per latest version of ionic. http://ionicframework.com/docs/api/directive/ionView/ http://ionicframework.com/docs/api/directive/ionNavTitle/

Ionic is continuously working and they would updating the directives in upcoming releases and I assume that you are using old version.

As per the 1.0.0-beta.13 doc, Attribute should be title instead of view-title

Change the following line

<ion-view view-title="Home">

to

<ion-view title="Home">

Old version Doc: http://ionicframework.com/docs/1.0.0-beta.13/api/directive/ionView/

But in latest version, it should be view-title

Latest doc: http://ionicframework.com/docs/api/directive/ionView/