blowfish/layouts/shortcodes/alert.html

9 lines
298 B
HTML
Raw Normal View History

2022-09-10 14:05:37 -05:00
<div class="flex px-4 py-3 rounded-md bg-primary-100 dark:bg-primary-900">
<span class="text-primary-400 ltr:pr-3 rtl:pl-3">
{{ partial "icon.html" (.Get 0 | default "triangle-exclamation") }}
</span>
<span class="dark:text-neutral-300">
{{- .Inner | markdownify -}}
</span>
</div>