18 lines
No EOL
557 B
Twig
18 lines
No EOL
557 B
Twig
{% 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>
|
|
{% endif %}
|
|
{% endblock %} |