diff -r 95d788307e42 -r 2e05b89881ed pymove3d.py --- a/pymove3d.py Sun Jan 19 07:53:05 2014 +0100 +++ b/pymove3d.py Sun Jan 19 08:18:43 2014 +0100 @@ -51,13 +51,19 @@ def de(): global LANGUAGE_SELECTED LANGUAGE_SELECTED = "de" - return render_template("/de/index.html") + saying, author = get_saying() + return render_template("/de/index.html", + saying = saying, + author = author) @app.route('/en') def en(): + saying, author = get_saying() global LANGUAGE_SELECTED LANGUAGE_SELECTED = "en" - return render_template("/en/index.html") + return render_template("/en/index.html", + saying = saying, + author = author) @app.route("/competition") def competition():