LoginSignup
0
0

More than 3 years have passed since last update.

Top画面でヘッダーとフッターしか表示されない rails備忘録

Posted at

備忘録として、、、

初歩的なことですが、、

application.html

<body>
    <%= render 'layouts/header' %>
      <main>
        <p id="notice"><%= notice %></p>
      </main>
    <%= render 'layouts/footer' %>

これだけだと、トップページが呼び出されていないため
<%= render 'layouts/header' %>
<%= render 'layouts/footer' %>しか反映されない

そこで
<%= yield %>(渡されているブロックと同じ働きをするメソッドのようなものだそうで)
を記述すると

application.html

<body>
    <%= render 'layouts/header' %>
      <main>
        <p id="notice"><%= notice %></p>
     <%= yield %>
      </main>
    <%= render 'layouts/footer' %>

無事反映されました!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0