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

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

9 lines
258 B
Plaintext

package main
// coffeeTextComponent renders text with a longer measure and drop-cap utility.
templ coffeeTextComponent(text, class string) {
<div class={ "coffee-body coffee-dropcap prose max-w-prose text-foreground", class }>
@templ.Raw(text)
</div>
}