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

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

10 lines
254 B
Plaintext

package main
// y2kTextComponent wraps prose in the y2k-text container so links pick up the
// holographic underline gradient.
templ y2kTextComponent(text, class string) {
<div class={ "y2k-text prose max-w-none", class }>
@templ.Raw(text)
</div>
}