Created
September 2, 2014 19:56
-
-
Save chyld/4ee1e391efef7a395bb8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- if(flash.error) | |
.alert.alert-danger.alert-dismissible(role='alert') | |
button.close(type="button", data-dismiss="alert") | |
span(aria-hidden="true") × | |
span.sr-only Close | |
strong Warning! | |
span= flash.error | |
- if(flash.notice) | |
.alert.alert-info.alert-dismissible(role='alert') | |
button.close(type="button", data-dismiss="alert") | |
span(aria-hidden="true") × | |
span.sr-only Close | |
strong Notice! | |
span= flash.notice | |
- if(flash.success) | |
.alert.alert-success.alert-dismissible(role='alert') | |
button.close(type="button", data-dismiss="alert") | |
span(aria-hidden="true") × | |
span.sr-only Close | |
strong Success! | |
span= flash.success |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment