diff options
author | KillyMXI | 2017-08-20 18:15:09 +0300 |
---|---|---|
committer | KillyMXI | 2017-08-20 18:15:09 +0300 |
commit | 8fa9a684c8a06bed7235f58f79af2d88da13fede (patch) | |
tree | 9fc35b94e23c90540e79272235b9900c6b9e3236 /juick-www/src/main/webapp/WEB-INF/views/blog.html | |
parent | 0bcb1e9529e6456db67a91eb2c699e26b5bbe42e (diff) |
www: i18n
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/views/blog.html')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/blog.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/blog.html b/juick-www/src/main/webapp/WEB-INF/views/blog.html index 8d241c82..87007ea8 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/blog.html +++ b/juick-www/src/main/webapp/WEB-INF/views/blog.html @@ -5,13 +5,13 @@ <!--noindex--> {% endif %} {% if paramTag | default('') is not empty %} -<p class="page"><a href="/tag/{{ paramTag.name | urlencode }}">← Все записи с тегом <b>{{ paramTag.name | escape }}</b></a></p> +<p class="page"><a href="/tag/{{ paramTag.name | urlencode }}">← {{ i18n("messages","blog.allPostsWithTag") }} <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 }} +{% 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" %} |