Files
herbarium/templates/post/index.html.twig
Matis MAZINGUE 8d1f0b9a6f Like a post
2024-06-13 09:53:07 +02:00

22 lines
877 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{{ 'posts'|trans }}{% endblock %}
{% block body %}
{% for post in posts.iterator %}
<div class="card">
<div class="card-body">
<h5 class="card-title"><a href="{{ path('app_post_show', {id: post.id}) }}">{{ post.species ? post.species.vernacularName : 'post_undefined'|trans }}</a></h5>
<h6 class="card-subtitle mb-2 text-muted">{{ post.foundDate | date("d/m/Y \\à H \\h") }}</h6>
<p class="card-subtitle mb-2 text-muted">{{ post.latitude }}, {{ post.longitude }}, {{ post.altitude }}m</p>
<p class="card-text">{{ post.commentary }}</p>
</div>
<div class="card-footer">
{{ post.likes.count() }} ❤️
{{ post.comments.count() }} 💬
</div>
</div>
{% endfor %}
{% include '_pagination.html.twig' %}
{% endblock %}