申し訳ありませんが、英語で特定の表現は使用しません。
index.erb
<h1>Hello World.</h1>
<ul>
<li>item1</li>
<li>item2</li>
</ul>
<% capture_content :key do %>
I'm Here.
<% end %>
helpers
def capture_content(key, &block)
@content_hash = {}
@content_hash[key] = block.call # this block contains erb all
end
capture_content
コンテンツが欲しいだけ
表現が正しいといいのですが(T_T)