mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-10 17:27:27 +00:00
initial commit
This commit is contained in:
18
views/partials/flash.pug
Normal file
18
views/partials/flash.pug
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
Reference in New Issue
Block a user