diff options
Diffstat (limited to 'juick-www')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/layouts/default.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/layouts/default.html b/juick-www/src/main/webapp/WEB-INF/layouts/default.html index f056322f..808eb9ed 100644 --- a/juick-www/src/main/webapp/WEB-INF/layouts/default.html +++ b/juick-www/src/main/webapp/WEB-INF/layouts/default.html @@ -2,13 +2,13 @@ {% block body %} {% include "views/partial/navigation" %} <div id="wrapper"> + <section id="content" + {% if msg | default('') is not empty %}data-mid="{{ msg.mid }}"{% endif %}> {% if visitor.uid == 0 %} <div class="page"> <p>{{ i18n("messages","message.loginForSending", "/login") | raw }}.</p> </div> {% endif %} - <section id="content" - {% if msg | default('') is not empty %}data-mid="{{ msg.mid }}"{% endif %}> {% block content %} {% endblock %} </section> |