summaryrefslogtreecommitdiffstats
path: root/app/templates/index.html
blob: 8ab2c065216bd95ec96d228b7b575f525a9033dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% 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('main.courses_show', 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 %}