website/layouts/_default/_markup/render-blockquote.html
2025-01-23 15:11:51 -05:00

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>