templates/front/posts.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3.     {% include "front/header.html.twig" with {"img":asset(vich_uploader_asset(bandeau, 'coverFile')),"title" :bandeau.title,"subtitle" :bandeau.subTitle,"btn":"posts.header.btn"|trans} %}
  4.     <section class="pat-50 container">
  5.         <div class="mab-50">
  6.             {% include "front/menu.html.twig" with {'menu':{("menu.posts"|trans):"#"}} %}
  7.         </div>
  8.         {% include "front/postsList.html.twig" %}
  9.     </section>
  10. {% endblock %}
  11. {% block javascripts %}
  12.     {{ parent() }}
  13.     {{ encore_entry_script_tags('posts') }}
  14. {% endblock %}