mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-04 00:05:28 -05:00
21 lines
988 B
Plaintext
21 lines
988 B
Plaintext
.container
|
|
.row.flashMessage
|
|
.col-xs-12.col-sm-8.col-sm-offset-2.col-md-6.col-md-offset-3
|
|
if messages.danger
|
|
.alert.alert-danger.fade.in
|
|
button.close(type='button', data-dismiss='alert')
|
|
i.fas.fa-times-circle
|
|
for danger in messages.danger
|
|
div!= typeof danger === 'string' ? danger : danger.msg
|
|
if messages.info
|
|
.alert.alert-info.fade.in
|
|
button.close(type='button', data-dismiss='alert')
|
|
i.fas.fa-times-circle
|
|
for info in messages.info
|
|
div!= typeof info === 'string' ? info : info.msg
|
|
if messages.success
|
|
.alert.alert-success.fade.in
|
|
button.close(type='button', data-dismiss='alert')
|
|
i.fas.fa-times-circle
|
|
for success in messages.success
|
|
div!= typeof success === 'string' ? success : success.msg |