{% extends "shared/base.html" %} {% block title %} Tanzanite {% endblock %} {% block content %} {% with msg=msg %} {% include "components/alerts.html" %} {% endwith %}

{% if not username %}Find your next challenge...{% endif %}

{% for challenge in challenges %}
{% with obj=challenge %} {% include "components/cards.html" %} {% endwith %} {% if loop.index % 3 %}
{% else %}

{% endif %} {% endfor %}
{% endblock %}