themes-art-deco/text_override.templ
Alex Dunmow 9fbedf5ba1 initial: theme plugin art-deco
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/art-deco.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:19 +08:00

14 lines
458 B
Plaintext

package main
// artDecoTextComponent renders rich text body copy with a classical italic dropcap.
templ artDecoTextComponent(data TextOverrideData) {
<div
data-block-override="art-deco:text"
data-deco-dropcap="true"
class={ "deco-dropcap prose max-w-none", data.Class }
style="font-family: var(--font-body, &quot;Cormorant Garamond&quot;, &quot;Cormorant&quot;, Georgia, serif); color: hsl(var(--foreground));"
>
@templ.Raw(data.Text)
</div>
}