templates/front/postsList.html.twig line 1

Open in your IDE?
  1. {% for key, post in posts %}
  2.     {% if asbtemplate.post.postFile %}
  3.         <div>
  4.             <img src="{{ asset(vich_uploader_asset(post, 'postFile')) | imagine_filter('my_thumb') }}"
  5.                  alt="{{ post.title }}" width="200px"/>
  6.         </div>
  7.     {% endif %}
  8.     {% if asbtemplate.post.title %}
  9.         <p>{{ post.title }}</p>
  10.     {% endif %}
  11.     {% if asbtemplate.post.intro %}
  12.         <p>{{ post.intro }}</p>
  13.     {% endif %}
  14.     {% if asbtemplate.post.date %}
  15.         <p>{{ post.date|date("d/m/Y") }}</p>
  16.     {% endif %}
  17.     <div>
  18.         <a href="{{ path('front_post', {'slug':post.slug}) }}">Lire l'article</a>
  19.     </div>
  20. {% endfor %}