Rails / application.html.erb not loading

I created a ruby ​​application and application.html.erb never loads (looking at webrick output, I never get "Rendered CLASS / index.html.erb in layouts / application" but "Rendered CLASS / index.html.erb" )

CLASS.html.erb never loads.

Only when explicitly specifying "render: file =>" layouts / application "in the controller does the .html.erb application load.

Can anyone help?

Thank you very much in advance

Sebastien

+5
source share
2 answers

Make sure you inherit the controller from ApplicationController.

class YourController < ApplicationController
  ...
end
+11
source

Add to your ApplicationController

layout :application

, , .

0

All Articles