diff options
Diffstat (limited to 'themes/docsy/layouts/shortcodes/alert.html')
-rw-r--r-- | themes/docsy/layouts/shortcodes/alert.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/themes/docsy/layouts/shortcodes/alert.html b/themes/docsy/layouts/shortcodes/alert.html new file mode 100644 index 0000000..ff3b0b3 --- /dev/null +++ b/themes/docsy/layouts/shortcodes/alert.html @@ -0,0 +1,6 @@ +{{ $_hugo_config := `{ "version": 1 }` }} +{{ $color := .Get "color" | default "primary" }} +<div class="alert alert-{{ $color }}" role="alert"> +{{ with .Get "title" }}<h4 class="alert-heading">{{ . | safeHTML }}</h4>{{ end }} +{{ .Inner | markdownify }} +</div> |