pflaenz.li-Symfony/templates/app/index.html.twig

25 lines
971 B
Twig
Raw Normal View History

2021-04-22 17:44:16 +02:00
{% extends 'base.html.twig' %}
{% block body %}
2021-04-26 17:31:24 +02:00
<h1>Offerings</h1>
{% if offerings|length > 0 %}
<div class="card-deck">
{% for offering in offerings %}
<a href="#">
<div class="card" style="width: 20rem;">
{% if offering.photoFilename %}
<img class="card-img-top" src="{{ asset('uploads/photos/' ~ offering.photofilename) }}" />
{% endif %}
<div class="card-body">
<h5 class="card-title">{{ offering.title }}</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</a>
{% endfor %}
</div>
2021-04-26 17:31:24 +02:00
{% else %}
<p>There are currently no active listings</p>
{% endif %}
{% endblock %}