Codigo do index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<link rel="manifest" href="manifest.json">
<!-- un-comment this code to enable service worker
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('service-worker.js')
.then(() => console.log('service worker installed'))
.catch(err => console.log('Error', err));
}
</script>-->
<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>
<script src="js/controller.js"></script>
</head>
<body ng-app="starter" ng-controller="ListagemController">
<ion-pane >
<ion-header-bar class="bar-stable">
<h1 class="title">Alura Car</h1>
</ion-header-bar>
<ion-content>
<ion-item ng-repeat="carro in ListaDeCarros" >
{{carro}}
</ion-item>
</ion-content>
<ion-footer-bar class="bar-stable">
<h1 class="title">Rua Vergueiro, 3185</h1>
</ion-footer-bar>
</ion-pane>
</body>
</html>
Codigo do controller.js
angular.module('starter')
.controller('ListagemController', function($scope) {
$scope.listaDeCarros = ['BMW 120i', 'ONIX 1.6', 'Fiesta 2.0', 'C3 1.0',
'Uno Fire', 'Sentra 2.0', 'Astra Sedan', 'Vectra 2.0 Turbo',
'Hilux 4x4', 'Montana Cabine Dupla', 'Outlander 2.4',
'Fusca 1500'];
});
OBS: Console do Chrome da zero erros e carrega o controller.js