# HG changeset patch # User Peter Koppatz # Date 1390125171 -3600 # Node ID e4f16be8b5b0b8808709f6ba113766d1342c22be # Parent 136a169eeda0f3252e507e194f57ba56b582e7d1 Unified index.html 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) diff -r 136a169eeda0 -r e4f16be8b5b0 templates/de/index.html --- a/templates/de/index.html Sun Jan 19 10:14:19 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,108 +0,0 @@ -{% extends "theme.html" %} -{% block body %} - - -
- {% include "claims.html" %} -
-
-
-

Einsendeschluss

-
-
-
    -
  • 1. Mai 2014
  • -
-
-
- -
-
-

Folgen Sie uns auch auf

-
- -
- -
- -
-
-
-

Python bewegt die Welt

-
-
-
    -
  • Python ist eine moderne Programmiersprache, die sich für fast jedes Anwendungsgebiet in - der Softwareentwicklung eignet.
  • -
  • Python ist dynamisch und objektorientiert und von Anfang an auf den einfachen Einstieg hin - entwickelt worden.
  • -
  • Python wird weltweit in vielen der bekanntesten Software Projekte eingesetzt.
  • -
-
-
-
-
- - -{% endblock %} - diff -r 136a169eeda0 -r e4f16be8b5b0 templates/en/index.html --- a/templates/en/index.html Sun Jan 19 10:14:19 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,108 +0,0 @@ -{% extends "theme.html" %} -{% block body %} - - -
- {% include "claims.html" %} -
-
-
-

Einsendeschluss

-
-
-
    -
  • 1. Mai 2014
  • -
-
-
- -
-
-

Folgen Sie uns auch auf

-
- -
- -
- -
-
-
-

Python bewegt die Welt

-
-
-
    -
  • Python ist eine moderne Programmiersprache, die sich für fast jedes Anwendungsgebiet in - der Softwareentwicklung eignet.
  • -
  • Python ist dynamisch und objektorientiert und von Anfang an auf den einfachen Einstieg hin - entwickelt worden.
  • -
  • Python wird weltweit in vielen der bekanntesten Software Projekte eingesetzt.
  • -
-
-
-
-
- - -{% endblock %} - diff -r 136a169eeda0 -r e4f16be8b5b0 templates/index.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/index.html Sun Jan 19 10:52:51 2014 +0100 @@ -0,0 +1,108 @@ +{% extends "theme.html" %} +{% block body %} + + +
+ {% include "claims.html" %} +
+
+
+

Einsendeschluss

+
+
+
    +
  • 1. Mai 2014
  • +
+
+
+ +
+
+

Folgen Sie uns auch auf

+
+ +
+ +
+ +
+
+
+

Python bewegt die Welt

+
+
+
    +
  • Python ist eine moderne Programmiersprache, die sich für fast jedes Anwendungsgebiet in + der Softwareentwicklung eignet.
  • +
  • Python ist dynamisch und objektorientiert und von Anfang an auf den einfachen Einstieg hin + entwickelt worden.
  • +
  • Python wird weltweit in vielen der bekanntesten Software Projekte eingesetzt.
  • +
+
+
+
+
+ + +{% endblock %} +