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

Find Jobs..

{% for comic in comics %}
{% with obj=comic %} {% include "components/comic_cards.html" %} {% endwith %} {% if loop.index %3 %}
{% else %}

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