diff --git a/examples/blueprintexample/simple_page/templates/pages/layout.html b/examples/blueprintexample/simple_page/templates/pages/layout.html index e74a5871..5eaa8fc6 100644 --- a/examples/blueprintexample/simple_page/templates/pages/layout.html +++ b/examples/blueprintexample/simple_page/templates/pages/layout.html @@ -1,6 +1,6 @@ Simple Page Blueprint -
+

This is blueprint example

A simple page blueprint is registered under / and /pages diff --git a/examples/flaskr/templates/layout.html b/examples/flaskr/templates/layout.html index cbdb9650..737b51b2 100644 --- a/examples/flaskr/templates/layout.html +++ b/examples/flaskr/templates/layout.html @@ -1,9 +1,9 @@ Flaskr - -

+ +

Flaskr

-
+
{% if not session.logged_in %} log in {% else %} @@ -11,7 +11,7 @@ {% endif %}
{% for message in get_flashed_messages() %} -
{{ message }}
+
{{ message }}
{% endfor %} {% block body %}{% endblock %}
diff --git a/examples/flaskr/templates/login.html b/examples/flaskr/templates/login.html index 6f70bb76..ed09aeba 100644 --- a/examples/flaskr/templates/login.html +++ b/examples/flaskr/templates/login.html @@ -1,14 +1,14 @@ {% extends "layout.html" %} {% block body %}

Login

- {% if error %}

Error: {{ error }}{% endif %} -

+ {% if error %}

Error: {{ error }}{% endif %} +

Username: -
+
Password: -
-
+
+
{% endblock %} diff --git a/examples/flaskr/templates/show_entries.html b/examples/flaskr/templates/show_entries.html index fabe65ec..9cbd3229 100644 --- a/examples/flaskr/templates/show_entries.html +++ b/examples/flaskr/templates/show_entries.html @@ -1,17 +1,17 @@ {% extends "layout.html" %} {% block body %} {% if session.logged_in %} -
+
Title: -
+
Text: -
-
+
+
{% endif %} -
    +
      {% for entry in entries %}
    • {{ entry.title }}

      {{ entry.text|safe }} {% else %} diff --git a/examples/jqueryexample/templates/index.html b/examples/jqueryexample/templates/index.html index 55d01631..b6118cf4 100644 --- a/examples/jqueryexample/templates/index.html +++ b/examples/jqueryexample/templates/index.html @@ -1,6 +1,6 @@ {% extends "layout.html" %} {% block body %} -

      jQuery Example

      - + - = - ? -

      calculate server side + + + = + ? +

      calculate server side {% endblock %} diff --git a/examples/jqueryexample/templates/layout.html b/examples/jqueryexample/templates/layout.html index 3e2ed69b..8be7606e 100644 --- a/examples/jqueryexample/templates/layout.html +++ b/examples/jqueryexample/templates/layout.html @@ -1,8 +1,8 @@ jQuery Example - - {% block body %}{% endblock %} diff --git a/examples/minitwit/templates/layout.html b/examples/minitwit/templates/layout.html index 668e3895..5a43df61 100644 --- a/examples/minitwit/templates/layout.html +++ b/examples/minitwit/templates/layout.html @@ -1,9 +1,9 @@ {% block title %}Welcome{% endblock %} | MiniTwit - -

      + +

      MiniTwit

      -