mirror of https://github.com/markbates/pkger.git
15 lines
414 B
HTML
15 lines
414 B
HTML
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<%= for (k, messages) in flash { %>
|
||
|
<%= for (msg) in messages { %>
|
||
|
<div class="alert alert-<%= k %>" role="alert">
|
||
|
<%= msg %>
|
||
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||
|
<span aria-hidden="true">×</span>
|
||
|
</button>
|
||
|
</div>
|
||
|
<% } %>
|
||
|
<% } %>
|
||
|
</div>
|
||
|
</div>
|