aboutsummaryrefslogtreecommitdiff
path: root/juick-www
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-02-15 12:24:58 +0300
committerGravatar Vitaly Takmazov2018-02-15 12:24:58 +0300
commiteb2b311ece1de020c2caeae89b8028f4a7215400 (patch)
tree1625542aa145c9cecbb803d281bb33440f9374f4 /juick-www
parent9bb8e121fdca3e0a0a93f235b569c8188ef2ed1d (diff)
www: fix login prompt layout
Diffstat (limited to 'juick-www')
-rw-r--r--juick-www/src/main/webapp/WEB-INF/layouts/default.html4
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>