diff options
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 |