{% extends "base.html" %}
{% block title %}Index{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{{ title }}
{# content #}
{% block content %}
Index
Welcome to my awesome homepage.
{% endblock %}
{{ name }}
{% for user in users %}
{{ user.username|e }}
{% else %}
no users found
{% endfor %}
{% macro input(name, value='', type='text', size=20) %}
{{ my_variable|default('my_variable is not defined') }}
{% for city, items in users|groupby("city") %}