hugo-theme-fha/layouts/_default/_markup/render-blockquote-alert.html

26 lines
622 B
HTML
Raw Normal View History

{{ $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>