Denys Konovalov
9f8ad678e8
All checks were successful
Website Pull Request / Pull-Request-Testbuild (pull_request) Successful in 36s
24 lines
481 B
HTML
24 lines
481 B
HTML
{{ $emojis := dict
|
|
"danger" "alert-octagram"
|
|
"info" "information-outline"
|
|
"warning" "alert-outline"
|
|
}}
|
|
|
|
{{ if eq .Type "alert" }}
|
|
<div class="alert alert-{{ .AlertType }}" role="alert">
|
|
<h4 class="alert-heading">
|
|
{{ partial "mdi" (index $emojis .AlertType) }}
|
|
{{ with .AlertTitle }}
|
|
{{ . }}
|
|
{{ else }}
|
|
{{ or (i18n .AlertType) (title .AlertType) }}
|
|
{{ end }}
|
|
</h4>
|
|
{{ .Text }}
|
|
</div>
|
|
{{ else }}
|
|
<blockquote>
|
|
{{ .Text }}
|
|
</blockquote>
|
|
{{ end }}
|