{% extends 'base.html.twig' %} {% block title %}{{ 'posts'|trans }}{% endblock %} {% block body %} {% if app.user %}
{{ 'create_new_post'|trans }}
{% endif %}
{% for post in posts.iterator %}
{% if post.image %} {% endif %}
{{ post.species ? post.species.vernacularName : 'post_undefined'|trans }}
{{ post.foundDate | date("d/m/Y \\à H \\h") }}

{{ post.latitude ?? 0 }}, {{ post.longitude ?? 0 }}, {{ post.altitude ?? 0 }}m

{{ post.commentary }}

{% endfor %}
{% include '_pagination.html.twig' %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}