mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
9 lines
234 B
HTML
9 lines
234 B
HTML
{{- /*
|
|
Usage: `callout "type"`, where `type` is one of info (default), danger, or warning
|
|
*/ -}}
|
|
|
|
{{- $css_class := .Get 0 | default "info" -}}
|
|
|
|
<div class="bd-callout bd-callout-{{ $css_class }}">
|
|
{{ .Inner | markdownify }}
|
|
</div>
|