github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/doc/themes/docsy/layouts/shortcodes/alert.html (about)

     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>