14 lines
540 B
HTML
14 lines
540 B
HTML
{{ $emojis := dict "caution" ":exclamation:" "important" ":information_source:"
|
|
"note" ":information_source:" "tip" ":bulb:" "warning" ":information_source:"
|
|
"todo" ":memo:" "quote" ":speech_balloon:" "default" ":information_source:" }}
|
|
<blockquote class="alert alert-{{ .AlertType }}">
|
|
<table>
|
|
<tr>
|
|
<td class="width-min">
|
|
{{ transform.Emojify (index $emojis .AlertType) }}
|
|
</td>
|
|
<td class="width-min">{{.AlertType}}</td>
|
|
<td class="width-auto">{{ .AlertTitle}}</td>
|
|
</tr>
|
|
</table>
|
|
</blockquote>
|