aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/webapp/WEB-INF/views/index.html
blob: ccab381bc44c979259de2e674b795df16efa260d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "layouts/content" %}
{% import "views/macros/tags" %}
{% block content %}
{% if noindex %}
<!--noindex-->
{% endif %}
{% for msg in msgs %}
{% include "views/partial/message" %}
{% endfor %}
{% if nextpage | default('') is not empty %}
<p class="page"><a href="{{ nextpage | raw }}" rel="prev">{{ i18n("messages","messages.next") }}</a></p>
{% endif %}
{% endblock %}
{% block "column" %}
{% if tag | default('') is not empty %}
{% include "views/partial/tagcolumn" %}
{% else %}
{% include "views/partial/homecolumn" %}
{% endif %}
{% if noindex %}
<!--/noindex-->
{% endif %}
{% endblock %}