For one of my controllers, all of the views are displaying without the application layout. The application layout works fine for every other controller & view in the application.
Here is a controller whose views display the application template (note: I've made all of the views empty to simplify matters)
class PagesController < ApplicationController
def home
@title = "Home"
end
end
And here is the controller whose views won't display the application layout (again, the view itself it empty)
class PersonalentriesController < ApplicationController
def index
@personalentries = current_user.personalentries.all
end
end
What could be causing this? Thanks for reading