website/themes/hugoplate/layouts/shortcodes/alert.html
bettina b208a35a88
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 57s
change bg-color on template
2024-09-03 16:19:46 +02:00

11 lines
No EOL
713 B
HTML

<div role="alert" class="alert light-text relative flex w-2/3 px-4 py-4 mx-auto text-base text-white bg-red-500 {{ with .Get "background-color" }}bg-{{ . }} {{ end }} rounded-lg font-regular">
<div class="shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2"
stroke="currentColor" class="w-8 h-8">
<path stroke-linecap="round" stroke-linejoin="round"
d="M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z">
</path>
</svg>
</div>
<div class="ml-3 mr-12">{{ trim .Inner "\r\n" | .Page.RenderString }}</div>
</div>