maeshimaの日記

メモ書きです

2010-03-17から1日間の記事一覧

nested layouts

Layouts and Rendering in Railsの最後の方を見て。app/layouts/application.html.erb <html> <head> <title><%= @page_title or 'Page Title' %></title> <%= stylesheet_link_tag 'layout' %> <style type="text/css"><%= yield :stylesheets %></style> </head> <body> <div id="top_menu">Top menu items here</div> </body></html>

Railsレシピブック Recipe 18-28

Railsレシピブック Recipe 1 - 17 - maeshimaの日記の続き。 部分テンプレートの繰り返し回数 部分テンプレート上で:collectionオプションを使ったときに、部分テンプレートの名前がローカル変数名になり、ローカル変数名_counterが繰り返し回数になる rende…