aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/webapp/WEB-INF/layouts/default.html
blob: 808eb9edb1f327d1e1e028652542c0725d214f9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "layouts/content" %}
{% 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 %}
    {% block content %}
    {% endblock %}
    </section>
    <aside id="column">
        {% block column %}
        {% endblock %}
    </aside>
</div>
{% include "views/partial/footer" %}
{% endblock %}