themes-terminal/keybind_table.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

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>
}