Files
paige-hugo/layouts/partials/paige/alert.html
2023-09-24 20:58:11 -07:00

10 lines
298 B
HTML

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