layouts/shortcodes/alert.html (11 lines of code) (raw):
{{/* TODO: Remove when docsy fix is merged and we update. See https://github.com/google/docsy/pull/941 */}}
{{ $color := .Get "color" | default "primary" -}}
<div class="alert alert-{{ $color }}" role="alert">
{{ with .Get "title" -}}
<div class="alert-heading">
{{- . | safeHTML -}}
</div>
{{ end -}}
{{/* Do **not** remove this comment! It ends above html block! See https://spec.commonmark.org/0.30/#html-blocks, 7. */}}
{{ .Inner }}
</div>