summaryrefslogtreecommitdiffstats
path: root/app/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/index.html')
-rw-r--r--app/templates/index.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/templates/index.html b/app/templates/index.html
index 9d090c3..8ab2c06 100644
--- a/app/templates/index.html
+++ b/app/templates/index.html
@@ -1,4 +1,4 @@
-{% extends "layout.html" %}
+{% extends "_layout.html" %}
{% block body %}
<h2>Studiengänge</h2>
@@ -6,7 +6,7 @@
<ul id="studies">
{% for name,img_path in studies|sort %}
<li>
- <a href="{{url_for('main.study_index', study=name)}}">
+ <a href="{{url_for('main.courses_show', study=name)}}">
<img src="{{url_for('static',filename=img_path)}}" alt="{{name}}" />
{{name.capitalize()}}
</a>
@@ -16,5 +16,4 @@
{% endfor %}
</ul>
</div>
-
{% endblock %}