26 lines
622 B
HTML
26 lines
622 B
HTML
|
{{ $emojis := dict
|
||
|
"caution" ":warning:"
|
||
|
"important" ":exclamation:"
|
||
|
"note" ":information_source:"
|
||
|
"tip" ":bulb:"
|
||
|
"warning" ":radioactive:"
|
||
|
"nature" ":evergreen_tree:"
|
||
|
"camping" ":tent:"
|
||
|
"meteo" ":sun_behind_small_cloud:"
|
||
|
"money" ":money_with_wings:"
|
||
|
"danger" ":no_entry:"
|
||
|
"wifi" ":wireless:"
|
||
|
}}
|
||
|
|
||
|
<blockquote class="md-alert md-alert-{{ .AlertType }}">
|
||
|
<div class="md-alert-heading">
|
||
|
{{ transform.Emojify (index $emojis .AlertType) }}
|
||
|
{{ with .AlertTitle }}
|
||
|
{{ . }}
|
||
|
{{ else }}
|
||
|
{{ or (i18n .AlertType) (title .AlertType) }}
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
{{ .Text }}
|
||
|
</blockquote>
|