mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-18 21:17:59 +00:00
11 lines
363 B
Plaintext
11 lines
363 B
Plaintext
|
<table><thead><tr><th>Shortcut</th><th>Action</th></tr></thead><tbody>
|
||
|
{%- for sc in shortcuts -%}
|
||
|
<tr><td>
|
||
|
{%- if sc.link -%}<a href="{{ sc.link }}">{%- endif -%}
|
||
|
{%- render "shortcut", shortcut: sc -%}
|
||
|
{%- if sc.link -%}</a>{%- endif -%}
|
||
|
</td>
|
||
|
<td>{{ sc.description }}</td></tr>
|
||
|
{%- endfor -%}
|
||
|
</tbody></table>
|