summaryrefslogtreecommitdiffstats
path: root/app/templates/index.html
blob: 14b7fde17fb94785b99bacf2b5062d273fb98203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "layout.html" %}
{% block body %}
  <h2>Studiengänge</h2>

  <div id="studies">
    <ul id="studies">
    {% for name,img_path in studies|sort %}
      <li>
        <a href="{{url_for('study_index', study=name)}}">
        <img src="{{url_for('static',filename=img_path)}}" alt="{{name}}" />
        {{name.capitalize()}}
        </a>
      </li>
    {% else %}
      <li>Keine Studiengänge konfiguriert!</li>
    {% endfor %}
    </ul>
  </div>

{% endblock %}