11 lines
354 B
Plaintext
11 lines
354 B
Plaintext
- unless flash.empty?
|
|
- if flash[:notice].present?
|
|
.alertbox.box-blue{ 'data-id' => 'alertbox', 'data-alert' => 'auto_close' }
|
|
.box-close{ 'data-id' => 'alert_close' }
|
|
= flash[:notice]
|
|
|
|
- if flash[:alert].present?
|
|
.alertbox.box-red{ 'data-id' => 'alertbox' }
|
|
.box-close{ 'data-id' => 'alert_close' }
|
|
%b= flash[:alert]
|