{% extends "layout.html" %} {% import 'macros.html' as macros %} {% block content %}
{{ macros.task_heading('cards', tasks) }} {% for task_row in tasks | batch(3) %}
{% for task in task_row %}

{{ task.description|urlize }}

{% endfor %}
{% endfor %} {% endblock content %}