{% extends 'base.html.twig' %}
{% block body %}
{% if offerings|length > 0 %}
{% for offering in offerings %}
{% if offering.photoFilename %}
<img src="{{ asset('uploads/photos/' ~ offering.photofilename) }}" />
{% endif %}
<h4>{{ offering.title }}</h4>
<small>
{{ offering.createdAt|format_datetime('medium', 'short') }}
</small>
{% endfor %}
{% else %}
<p>There are currently no active listings</p>
{% endblock %}