diff options
Diffstat (limited to 'doc/invocations-http-server/templates/tree.html')
-rw-r--r-- | doc/invocations-http-server/templates/tree.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/tree.html b/doc/invocations-http-server/templates/tree.html new file mode 100644 index 00000000..765be73e --- /dev/null +++ b/doc/invocations-http-server/templates/tree.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} +{% block heading %} +Tree {{ name | e }} +{% endblock %} + +{% block content %} +<h1>Tree {{ name | e }}</h1> + +<ul> + {% for entry in entries %} + <li><a href="/{{ entry["type"] | e}}/{{ entry["hash"] | e}}">{{ entry["path"] | e}}</a></li> + {% endfor %} +</ul> +{% endblock %} |