Home Explore Blog CI



tera

docs/content/_index.md
6b0250d399aeca6caa9e6d750f0a214ae1619bdfa443ef3c00000003000000ba
+++
+++

```jinja2
<title>{% block title %}{% endblock title %}</title>
<ul>
{% for user in users -%}
  <li><a href="{{ user.url }}">{{ user.username }}</a></li>
{%- endfor %}
</ul>
```

Chunks
4871803f (1st chunk of `docs/content/_index.md`)
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.