diff --git a/templates/app/index.html.twig b/templates/app/index.html.twig index aa0d3fa..6d68183 100644 --- a/templates/app/index.html.twig +++ b/templates/app/index.html.twig @@ -1,17 +1,24 @@ {% extends 'base.html.twig' %} {% block body %} - {% if offerings|length > 0 %} - {% for offering in offerings %} - {% if offering.photoFilename %} - - {% endif %} -

{{ offering.title }}

- - {{ offering.createdAt|format_datetime('medium', 'short') }} - - {% endfor %} +

Offerings

+ {% if offerings|length > 0 %} +
+ {% for offering in offerings %} + +
+ {% if offering.photoFilename %} + + {% endif %} +
+
{{ offering.title }}
+

Some quick example text to build on the card title and make up the bulk of the card's content.

+
+
+
+ {% endfor %} +
{% else %}

There are currently no active listings

{% endif %}