alert.html 359 B

12345678910
  1. {{ $_hugo_config := `{ "version": 1 }` }}
  2. {{ $color := .Get "color" | default "primary" }}
  3. <div class="alert alert-{{ $color }}" role="alert">
  4. {{ with .Get "title" }}<h4 class="alert-heading">{{ . | safeHTML }}</h4>{{ end }}
  5. {{ if eq .Page.File.Ext "md" }}
  6. {{ .Inner | markdownify }}
  7. {{ else }}
  8. {{ .Inner | htmlUnescape | safeHTML }}
  9. {{ end }}
  10. </div>