blob: 51590ce09015c884f53520adf467f8eec0e13961 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% 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" %}
{% include "views/partial/homecolumn" %}
{% if noindex %}
<!--/noindex-->
{% endif %}
{% endblock %}
|