如何在rails中的ruby中的content_for标记内添加break标记?

时间:2014-11-10 13:31:19

标签: html ruby-on-rails

在我的布局文件中,我有一个content_for标记用于表示感谢。我想在首席执行官和The Sadly设计团队以及快乐设计团队之间分一杯羹。这该怎么做?使用< BR />我收到语法错误。

layout.html.erb

<p class="no-margin" style="padding:10px 0 0;">
                    <%= content_for?(:thanking) ? 'CEO,' ' The Sadly Design Team' : "Sincerely, 'The Happy design team " %>
 </p>

2 个答案:

答案 0 :(得分:0)

你可以这样做:

<%= (content_for?(:thanking) ? "CEO,<br/>The Sadly Design Team" : "Sincerely,<br/>The Happy design team").html_safe %>

答案 1 :(得分:0)

试试这个:

<% if content_for?(:thanking) %>
CEO,<br>
The Sadly Design Team
<% else %>
Sincerely,<br> 
The Happy design team
<% end %>