11 lines
326 B
HTML
11 lines
326 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div>
|
|
<ul>
|
|
<li><a href="{{ url_for('form') }}">Jetzt mitspielen</a></li>
|
|
<li><a href="{{ url_for('answers') }}">Hier geht's zu deinen Antworten</a></li>
|
|
<li><a href="{{ url_for('solution') }}">Lösung einreichen</a></li>
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|