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>
16 lines
398 B
Plaintext
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>
|
|
}
|