themes-terminal/code_console.templ
Alex Dunmow 0a9b177f7c initial: theme plugin terminal
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/terminal.

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

16 lines
398 B
Plaintext

package main
templ codeConsoleComponent(data CodeConsoleData) {
<div class="code-console" data-block="terminal:code_console" data-language={ data.Language }>
if data.Command != "" {
<div class="cmd-line">
<span class="cmd-prompt">{ data.Prompt }</span>
<span class="cmd-text">{ data.Command }</span>
</div>
}
if data.Output != "" {
<pre>{ data.Output }</pre>
}
</div>
}