diff -r ae4cd5fbf65f -r ea70f3d81676 pymove3d.py --- a/pymove3d.py Sat Jan 18 16:29:40 2014 +0100 +++ b/pymove3d.py Sat Jan 18 20:06:19 2014 +0100 @@ -11,6 +11,7 @@ from flask.ext.babel import Babel from config import LANGUAGES +from sayings import get_saying LANGUAGE_SELECTED = "de" #ToDo after engelish is implemented set LANGUAGE_SELECTED = None @@ -27,7 +28,10 @@ @app.route("/") @app.route("/index") def index(): - return render_template(get_locale() + "/index.html") + saying, author = get_saying() + return render_template(get_locale() + "/index.html", + saying = saying, + author = author) @app.route('/de') def de():