fv17の日記

Webエンジニアの備忘用ブログです。主にWeb界隈の技術に関して書いています。

Rails - content_tagの使い方

content_tagメモ

before

<div class="alert alert-<%= message_type %>"><%= message %></div>

after

<%= content_tag(:div, message, class: "alert alert-#{message_type}") %>