<!-- Default Bootstrap Toast -->
<div class="toast fade show" role="alert" aria-live="assertive" aria-atomic="true" data-autohide="false">
<div class="toast-header">
<div class="d-inline-block align-middle bg-primary rounded-circle mr-2"></div>
<strong>Bootstrap</strong>
<small>11 mins ago</small>
<button type="button" class="ml-2 close" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="toast-body">
Hello, world! This is a toast message.
</div>
</div>
//- Default Bootstrap Toast
div(role="alert" aria-live="assertive" aria-atomic="true" data-autohide="false").toast.fade.show
.toast-header
div(style="width: 1.25rem; height: 1.25rem;").d-inline-block.align-middle.bg-primary.rounded-circle.mr-2
strong.mr-auto Bootstrap
small 11 mins ago
button(type="button" data-dismiss="toast" aria-label="Close").ml-2.close
span(aria-hidden="true") ×
.toast-body
| Hello, world! This is a toast message.