Skip to content

Instantly share code, notes, and snippets.

@Porter97
Created March 3, 2020 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Porter97/9010fc08d6a108b2b84d0e1400019ae6 to your computer and use it in GitHub Desktop.
Save Porter97/9010fc08d6a108b2b84d0e1400019ae6 to your computer and use it in GitHub Desktop.
<ul class="users">
{% for user in users %}
<li class="user">
<div class="user-thumbnail">
<a href="{{ url_for('.user', username=user.username) }}">
<img class="img-rounded profile-thumbnail" src="{{ user.gravatar(size=40) }}">
</a>
</div>
<div class="user-info">
<div class="user-username">
<a href="{{ url_for('.user', username=user.username) }}">{{ user.username }}</a>
</div>
</div>
</li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment