themes-terminal/blocks/keybind_table.ninjatpl
Alex Dunmow f6e2c1dccc feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:31:20 +08:00

2 lines
325 B
Plaintext

{% if rows %}<table class="keybind-table" data-block="terminal:keybind_table"><thead><tr><th>Keys</th><th>Action</th></tr></thead><tbody>{% for row in rows %}<tr><td>{% for k in row.keys|split:" " %}{% if k %}<kbd>{{ k }}</kbd>{% endif %}{% endfor %}</td><td>{{ row.action }}</td></tr>{% endfor %}</tbody></table>{% endif %}