From 237739950a305b13c9f29e3ca25c2e835d563a3f Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Fri, 5 May 2017 17:42:27 +0300 Subject: User controller -> pebble --- juick-www/src/main/webapp/WEB-INF/views/blog.html | 85 +++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 juick-www/src/main/webapp/WEB-INF/views/blog.html (limited to 'juick-www/src/main/webapp/WEB-INF/views/blog.html') diff --git a/juick-www/src/main/webapp/WEB-INF/views/blog.html b/juick-www/src/main/webapp/WEB-INF/views/blog.html new file mode 100644 index 00000000..6672adff --- /dev/null +++ b/juick-www/src/main/webapp/WEB-INF/views/blog.html @@ -0,0 +1,85 @@ +{% extends "layouts/content" %} +{% import "views/macros/tags" %} +{% block content %} +{% if noindex %} + +{% endif %} +{% if paramTag | default('') is not empty %} +

← Все записи с тегом {{ paramTag.name | escape }}

+{% endif %} +{% if paramTag | default('') is not empty %} +

← Все записи с тегом {{ paramTag.name | escape }}

+{% endif %} +{% for msg in msgs %} +
+
@{{ msg.user.name }}: + +
+ +
+ {{ tags(msg.user.name, msg.tags) }} +
+
+ + {% if msg.AttachmentType is not empty %} +

+ +

+ {% endif %} +

{{ msg | formatMessage }}

+ {% if msg.AttachmentType is not empty %} +
+ {% endif %} + {% if not readonly %} + + {% endif %} + +
+{% endfor %} +{% if (next | default('')) is not empty %} +{{ next | raw }} +{% endif %} +{% endblock %} +{% block "column" %} +{% include "views/partial/usercolumn" %} +{% if noindex %} + +{% endif %} +{% endblock %} \ No newline at end of file -- cgit v1.2.3