Hi there, the error looks like it can’t find the template itself.
By default it checks if there is a template associated within the module.config.php, if not it will inspect the controller matched during routing to determine the module namespace and the controller class name, and, if available, it’s “action” parameter in order to create a template name like so:
module/controller/action
In your case it’s trying to find the template within /Album/view/album/album/index.phtml
Or you can just specify the path you want in the module.config.php file as such assuming your using the namespace of Album, controller of IndexController and action of indexAction: