diff -r 136a169eeda0 -r e4f16be8b5b0 pymove3d.py --- a/pymove3d.py Sun Jan 19 10:14:19 2014 +0100 +++ b/pymove3d.py Sun Jan 19 10:52:51 2014 +0100 @@ -43,7 +43,7 @@ @app.route("/index") def index(): saying, author = get_saying() - return render_template(get_locale() + "/index.html", + return render_template("/index.html", saying = saying, author = author) @@ -52,7 +52,7 @@ global LANGUAGE_SELECTED LANGUAGE_SELECTED = "de" saying, author = get_saying() - return render_template("/de/index.html", + return render_template("/index.html", saying = saying, author = author) @@ -61,7 +61,7 @@ saying, author = get_saying() global LANGUAGE_SELECTED LANGUAGE_SELECTED = "en" - return render_template("/en/index.html", + return render_template("/index.html", saying = saying, author = author)