+++
+++
```jinja2
<title>{% block title %}{% endblock title %}</title>
<ul>
{% for user in users -%}
<li><a href="{{ user.url }}">{{ user.username }}</a></li>
{%- endfor %}
</ul>
```
Title: Jinja2 Template Snippet: User List
Summary
This Jinja2 template generates an HTML title (using a block for customization) and an unordered list of users. It iterates through a 'users' list, creating a list item with a link to each user's URL and displaying their username.