Files
personal-site/components/image.templ
2026-03-10 05:13:44 +09:00

17 lines
327 B
Plaintext

package components
templ Image(src, alt, caption string) {
<figure class="w-full">
<img
src={ src }
alt={ alt }
class="w-full h-auto rounded-lg object-cover"
/>
if caption != "" {
<figcaption class="mt-2 text-center font-mono text-[0.6875rem] text-fg-300">
{ caption }
</figcaption>
}
</figure>
}