Skip to content

Instantly share code, notes, and snippets.

@akhilstanis
Last active December 13, 2015 22:09
Show Gist options
  • Save akhilstanis/4982891 to your computer and use it in GitHub Desktop.
Save akhilstanis/4982891 to your computer and use it in GitHub Desktop.
Snippet: HAML - Bootstrap Flash Messages
- flash.each do |name, msg|
- if msg.is_a?(String)
%div{:class => "alert alert-#{name == :notice ? "success" : "error"}"}
%a.close{"data-dismiss" => "alert"} ×
= content_tag :div, msg, :id => "flash_#{name}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment