Testei e funcionou, porém o console do navegador está me informando o seguinte erro:
Failed to parse SourceMap: http://localhost:3000/js/lib/angular.min.js.map
Seguem meu código:
angular.module('alurapic').controller('FotosController', function($scope){
$scope.foto = {
url : 'http://www.fundosanimais.com/Minis/leoes.jpg',
titulo: 'Leão'
};
});
angular.module('alurapic', []);
<!DOCTYPE html>
<html lang="pt-br" ng-app="alurapic">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Alurapic</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<script src="js/lib/angular.min.js"></script>
<script src="js/main.js"></script>
<script src="js/controllers/fotos-controllers.js"></script>
</head>
<body ng-controller="FotosController">
<div class="container">
<h1 class="text-center">Alurapic</h1>
<img src="{{foto.url}}" alt="{{foto.titulo}}">
</div> <!-- fim container -->
</body>
</html>