diff options
author | Vitaly Takmazov | 2017-05-23 14:47:38 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-05-23 15:50:32 +0300 |
commit | be30d843aab467aa628f1c3f3c7d194bfda54284 (patch) | |
tree | 4185a4e0c084aa1a0e0072af5153fd895edf440c /juick-www/src/main/webapp/WEB-INF/views/users.html | |
parent | 4c6f3ba0d539f63a83c18e20ed4219bdef849b81 (diff) |
fix style
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/views/users.html')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/users.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/users.html b/juick-www/src/main/webapp/WEB-INF/views/users.html new file mode 100644 index 00000000..0f66da54 --- /dev/null +++ b/juick-www/src/main/webapp/WEB-INF/views/users.html @@ -0,0 +1,17 @@ +{% extends "layouts/content" %} +{% import "views/macros/tags" %} +{% block content %} +<div class="users"> + {% for u in users %} + <span> + <a href="/{{ u.name }}/"> + <img src="//i.juick.com/as/{{ u.uid }}.png" alt="{{ u.name }}"/> + {{ u.name }} + </a> + </span> + {% endfor %} +</div> +{% endblock %} +{% block "column" %} +{% include "views/partial/usercolumn" %} +{% endblock %}
\ No newline at end of file |