go__sqs_demo/front/templates/flashes.gohtml
2023-02-07 11:20:56 +01:00

13 lines
No EOL
533 B
Go Template

{{ define "flashes" -}}
{{ if . }}
<div class="alert alert-secondary d-flex align-items-center p-3 bg-warning bg-opacity-10 border border-warning rounded mb-4 alert-dismissible fade show">
<span id="warning-emj">⚠️</span>
<ul class="m-0">
{{ range . }}
<li>{{ . }}</li>
{{ end }}
</ul>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{{ end }}
{{ end }}