1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-18 21:17:59 +00:00
rolens/website/includes/shortcuts.liquid

11 lines
363 B
Plaintext
Raw Normal View History

2023-06-01 20:06:51 +00:00
<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>