33 lines
742 B
HTML
33 lines
742 B
HTML
{% extends "shared/base.html" %}
|
|
|
|
{% block title %}
|
|
<title>Comic Artists</title>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% with msg=msg %}
|
|
{% include "components/alerts.html" %}
|
|
{% endwith %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h1 class="display-5">Find Artists..</h1>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
{% for artist in artists %}
|
|
<div class="col-lg-4 col-md-3 col-sm-10 mr-auto">
|
|
{% with obj=artist %}
|
|
{% include "comic/artist_cards.html" %}
|
|
{% endwith %}
|
|
|
|
{% if loop.index %3 %}
|
|
</div>
|
|
{% else %}
|
|
</div></div><br><div class="row">
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|