summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 161bf0143c97cfdf9982299b7017f6722b3db795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends 'layout.html' %}

{% block content %}
<h1>Hostinfo</h1>

<ul id="hosts" class="row">
  {% for host in hosts %}
  <li class="span2">
    <a href={{host['url']}} class="thumbnail">
      {{host['hostname'] | replace(".spline.inf.fu-berlin.de","")}}
    </a>
  </li>
  {% endfor %}
</ul>
{% endblock %}