In IndexController.php, where is your action method?
You need something like this to put your code in:
Code:
function indexAction()
{
$album = new Album();
$this->view->albums = $album->fetchAll();
// ...
}
What is indexIndex.php?
If that is your view file, it should be index.phtml and stored in an index folder inside of your views directory.
Hope this helps!