Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/kindergarten. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
10 lines
215 B
Plaintext
10 lines
215 B
Plaintext
package main
|
|
|
|
// kgTextComponent renders rich text body styled to match the Kindergarten
|
|
// reading rhythm.
|
|
templ kgTextComponent(text, class string) {
|
|
<div class={ "kg-text", class }>
|
|
@templ.Raw(text)
|
|
</div>
|
|
}
|