Add common alert short-codes.

This commit is contained in:
2025-08-24 11:13:40 -07:00
parent 74e78acea1
commit 6fd516b2a6
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{{ $.Scratch.Set "icon" (default "sun" (.Get 0) ) }}
<div
class="alert flex px-4 py-3 rounded-md bg-sky-200 dark:bg-sky-500"
>
<span
class="ltr:pr-3 rtl:pl-3 flex text-yellow-200 items-begin pt-[6px]"
>
{{ partial "icon.html" ($.Scratch.Get "icon") }}
</span>
<span
class="dark:text-sky-50 text-sky-900"
>
{{- .Inner | markdownify -}}
</span>
</div>

View File

@@ -0,0 +1,17 @@
{{ $.Scratch.Set "icon" (default "circle-info" (.Get 0) ) }}
<div
class="alert flex px-4 py-3 rounded-md bg-green-100 dark:bg-green-700"
>
<span
class="text-green-400 ltr:pr-3 rtl:pl-3 flex items-begin pt-[6px]"
>
{{ partial "icon.html" ($.Scratch.Get "icon") }}
</span>
<span
class="dark:text-green-100 text-green-950"
>
{{- .Inner | markdownify -}}
</span>
</div>

View File

@@ -0,0 +1,17 @@
{{ $.Scratch.Set "icon" (default "graduation-cap" (.Get 0) ) }}
<div
class="alert flex px-4 py-3 rounded-md bg-violet-200 dark:bg-violet-700"
>
<span
class="text-violet-800 dark:text-violet-100 ltr:pr-3 rtl:pl-3 flex items-begin pt-[6px]"
>
{{ partial "icon.html" ($.Scratch.Get "icon") }}
</span>
<span
class="dark:text-violet-200 text-violet-900"
>
{{- .Inner | markdownify -}}
</span>
</div>