aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/webapp/WEB-INF/views/users.html
blob: 0f66da54b7e6e1201e4d6e8a4291f32c22198e5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 %}