Files
paige-hugo/layouts/partials/paige/alert.html
2023-09-15 23:44:56 -07:00

10 lines
320 B
HTML

{{ $page := . }}
{{ with $page.Param "paige.alert" }}
{{ if reflect.IsMap . }}
<div class="alert alert-{{ .type }}" role="alert">{{ .message | markdownify | safeHTML }}</div>
{{ else }}
<div class="alert alert-primary" role="alert">{{ . | markdownify | safeHTML }}</div>
{{ end }}
{{ end }}