aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/webapp/WEB-INF/views/blog.html
blob: 8d241c827c2f8a69ac30bba1565f697dfd5414f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "layouts/content" %}
{% import "views/macros/tags" %}
{% block content %}
{% if noindex %}
<!--noindex-->
{% endif %}
{% if paramTag | default('') is not empty %}
<p class="page"><a href="/tag/{{ paramTag.name | urlencode }}">← Все записи с тегом <b>{{ paramTag.name | escape }}</b></a></p>
{% endif %}
{% for msg in msgs %}
{% include "views/partial/message" %}
{% endfor %}
{% if (next | default('')) is not empty %}
{{ next | raw }}
{% endif %}
{% endblock %}
{% block "column" %}
{% include "views/partial/usercolumn" %}
{% if noindex %}
<!--/noindex-->
{% endif %}
{% endblock %}