Move container handling to list page itself

This commit is contained in:
Jake Howard 2022-06-19 14:46:59 +01:00
parent 122bf8dea2
commit 8e1426c8ea
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
<article class="container media listing-item">
<article class="media listing-item">
<div class="columns">
<figure class="media-left column is-3 image-column">
<p class="image">

View File

@ -6,8 +6,10 @@
{% include "common/hero.html" %}
{% for i in 3|range %}
{% include "common/listing-item.html" %}
{% endfor %}
<div class="container">
{% for i in 9|range %}
{% include "common/listing-item.html" %}
{% endfor %}
</div>
{% endblock content %}