我想在 Rails 应用程序中使用 Twitterbootstrap 附带的字形图标。根据文档,
All icons require an <i> tag with a unique class, prefixed with icon-. To use, place the following code just about anywhere:
<i class="icon-remove"></i>
我使用以下代码生成错误消息,但我不知道如何包含标记。
<ul>
<% @errors.each do | msg| %>
<li><%= content_tag :div, msg, :id => "flash", :class => "icon-remove" %></li>
<% end %>
</ul>