Hello, {{ user_name | capitalize }}!
{% set items = ["apple", "banana", "cherry", "date"] %}You are an administrator.
{% elif user_is_moderator %}You are a moderator.
{% else %}You are a regular user.
{% endif %} {# This is a Jinja2 comment and should be ignored #}Current date and time: {{ current_datetime | datetimeformat("%Y-%m-%d %H:%M:%S") }}
{% macro render_button(text, url, class="btn-primary") %} {{ text }} {% endmacro %} {{ render_button("Click Me", "/some/url", "btn-success") }} {{ render_button("Learn More", "/another/url") }} {% block footer %}© {{ "now" | date("%Y") }} Jinja2 Testing
{% endblock %}