LoginSignup
2
1

More than 5 years have passed since last update.

【Ruby on Rails】Foundation5 flash message with slim

Last updated at Posted at 2015-06-20
app/views/layouts/_message.html.slim
- flash.each do |name, msg|
  - if msg.is_a?(String)
    div data-alert='' class="alert-box round #{name.to_s == 'notice' ? 'success' : 'alert'}"
      = content_tag :div, msg
      a href='#' class='close' ×
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1