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>
25 lines
419 B
Plaintext
25 lines
419 B
Plaintext
package main
|
|
|
|
templ keybindTableComponent(data KeybindTableData) {
|
|
<table class="keybind-table" data-block="terminal:keybind_table">
|
|
<thead>
|
|
<tr>
|
|
<th>Keys</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
for _, row := range data.Rows {
|
|
<tr>
|
|
<td>
|
|
for _, k := range row.Keys {
|
|
<kbd>{ k }</kbd>
|
|
}
|
|
</td>
|
|
<td>{ row.Action }</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
}
|