summaryrefslogtreecommitdiff
path: root/doc/invocations-http-server/templates/tree.html
blob: 765be73e601f715a857905c400fba2129e576010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 %}