summaryrefslogtreecommitdiff
path: root/qutebrowser/html
diff options
context:
space:
mode:
authorMarc Jauvin <marc.jauvin@gmail.com>2018-01-12 17:28:56 -0500
committerGitHub <noreply@github.com>2018-01-12 17:28:56 -0500
commit3a7ac51a0018afbd5e6c8cf1def2799d013e17cb (patch)
tree6f0753b0db9df8c20e2ddeea78a1982655aa6366 /qutebrowser/html
parent8940e05baf210bdeb9e24c7c0125d0e5b12a3e36 (diff)
downloadqutebrowser-3a7ac51a0018afbd5e6c8cf1def2799d013e17cb.tar.gz
qutebrowser-3a7ac51a0018afbd5e6c8cf1def2799d013e17cb.zip
html template to render qute://bindings
Diffstat (limited to 'qutebrowser/html')
-rw-r--r--qutebrowser/html/bindings.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/qutebrowser/html/bindings.html b/qutebrowser/html/bindings.html
new file mode 100644
index 000000000..29c3f1883
--- /dev/null
+++ b/qutebrowser/html/bindings.html
@@ -0,0 +1,36 @@
+{% extends "base.html" %}
+
+{% block style %}
+html { margin:20px; }
+table { width:100%; border: 1px solid grey; border-collapse: collapse; margin:10px; }
+tr,td,p { margin:0; padding: 1px; }
+th, td { border: 1px solid grey; }
+th { background: lightgrey; }
+th pre { color: grey; text-align: left; }
+.key { width: 25%; }
+.command { width: 75% }
+{% endblock %}
+
+{% block content %}
+<header><h1>{{ title }}</h1></header>
+{% for mode, binding in bindings.items() %}
+<h2>Mode = {{ 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 %}