You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
herbarium/templates/post/index.html.twig

12 lines
256 B

{% extends 'base.html.twig' %}
{% block title %}Posts!{% endblock %}
{% block body %}
{% for post in posts %}
<div class="card">
#{{ post.id }} trouvé le {{ post.foundDate | date("d/m/Y \\à H \\h") }}
</div>
{% endfor %}
{% endblock %}