]> git.mar77i.info Git - hublib/blob - webroot/index.html.j2
04f905970961dd7362d2cca6a7624a46587de3e4
[hublib] / webroot / index.html.j2
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7 <title>Hubapp Index</title>
8 <link rel="stylesheet" href="{% static 'style.css' %}">
9 </head>
10 <body>
11 <h1>App list</h1>
12 <ul>
13 {% for name, hubapp in hubapp.app.hubapps.items() %}
14 {% if name != 'root' %}
15 <li>
16 <span>{{ name }}</span>
17 <span><a href="{% static 'master.html', hubapp %}">master</a></span>
18 <span><a href="/{{ name }}">/{{ name }}</a></span>
19 </li>
20 {% endif %}{# name != 'root' #}
21 {% endfor %}{# hubapps #}
22 </ul>
23 </body>
24 </html>