Angular repeat test

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<div ng-app='' ng-controller='testCtrl as tCtrl'>
    <table class='table table-bordered'>
        <tbody ng-repeat='group in tCtrl.groups'>
            <tr ng-repeat='row in group'>
                <th>title: {{row.title}}</th>
                <td>content: {{row.content}}</td>
            </tr>
        </tbody>
    </table>
</div>

JavaScript

function testCtrl(){
    $this.groups = [
        [{title:'t1',content:'c1'}],
        [{title:'t2',content:'c2'}],
        [{title:'t3',content:'c3'}]
    ]
}