diff options
author | Vitaly Takmazov | 2018-02-15 12:24:58 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-02-15 12:24:58 +0300 |
commit | eb2b311ece1de020c2caeae89b8028f4a7215400 (patch) | |
tree | 1625542aa145c9cecbb803d281bb33440f9374f4 /juick-www/src/main/webapp/WEB-INF/layouts/default.html | |
parent | 9bb8e121fdca3e0a0a93f235b569c8188ef2ed1d (diff) |
www: fix login prompt layout
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/layouts/default.html')
-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> |