summaryrefslogtreecommitdiff
path: root/qutebrowser/html/bindings.html
blob: 7bc441cbd5c49f200f5bf5949eb395389404ed2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends "styled.html" %}

{% block style %}
{{ super() }}
th { text-align:left; }
.key { width: 25%; }
.command { width: 75% }
{% endblock %}

{% block content %}
<header><h1>{{ title }}</h1></header>
{% for mode, binding in bindings.items() %}
<h2 id="{{ mode }}">{{ mode | capitalize }} mode</h2>
<table>
    <tr>
        <th>Key</th>
        <th>Command</th>
    </tr>
  {% for key,command in binding.items() %}
    <tr>
      <td class="key">
        <p>{{ key }}</p>
      </td>
      <td class="command">
        <p>{{ command }}</p>
      </td>
    </tr>
  {% endfor %}
</table>
{% endfor %}

{% endblock %}