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>
9 lines
258 B
Plaintext
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>
|
|
}
|