From 8e1426c8eaa03d2bae13fc76d089ac8e1ccc9248 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 19 Jun 2022 14:46:59 +0100 Subject: [PATCH] Move container handling to list page itself --- website/common/templates/common/listing-item.html | 2 +- website/common/templates/common/listing_page.html | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/website/common/templates/common/listing-item.html b/website/common/templates/common/listing-item.html index 9abd09a..b16d960 100644 --- a/website/common/templates/common/listing-item.html +++ b/website/common/templates/common/listing-item.html @@ -1,4 +1,4 @@ -
+

diff --git a/website/common/templates/common/listing_page.html b/website/common/templates/common/listing_page.html index f38e1b5..4b7d7ca 100644 --- a/website/common/templates/common/listing_page.html +++ b/website/common/templates/common/listing_page.html @@ -6,8 +6,10 @@ {% include "common/hero.html" %} -{% for i in 3|range %} - {% include "common/listing-item.html" %} -{% endfor %} +

+ {% for i in 9|range %} + {% include "common/listing-item.html" %} + {% endfor %} +
{% endblock content %}