1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-10 17:27:27 +00:00
Files
TypeScript-Node-Starter/views/partials/flash.pug
Bowden Kelly 6625b87b19 initial commit
2017-05-09 13:28:09 -07:00

19 lines
557 B
Plaintext

if messages.errors
.alert.alert-danger.fade.in
button.close(type='button', data-dismiss='alert')
i.fa.fa-times-circle-o
for error in messages.errors
div= error.msg
if messages.info
.alert.alert-info.fade.in
button.close(type='button', data-dismiss='alert')
i.fa.fa-times-circle-o
for info in messages.info
div= info.msg
if messages.success
.alert.alert-success.fade.in
button.close(type='button', data-dismiss='alert')
i.fa.fa-times-circle-o
for success in messages.success
div= success.msg