templates/front/posts.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% set currentPage = ("navbar.posts")|trans %}
  3. {% block body %}
  4.     {% include "front/header.html.twig" with {
  5.         'icon':asset("assets/img/posico.svg"),
  6.         "img":asset("assets/img/posbg.png"),
  7.         "title":("posts.header.title"|trans),
  8.         "intro":("posts.header.intro"|trans),
  9.     } %}
  10.     <section class="container">
  11.         <div class="may-30">
  12.             {% include "front/menu.html.twig" with {'menu':{("menu.posts"|trans):"#"}} %}
  13.         </div>
  14.         {% include "front/postsList.html.twig" %}
  15.     </section>
  16. {% endblock %}
  17. {% block javascripts %}
  18.     {{ parent() }}
  19.     {{ encore_entry_script_tags('posts') }}
  20. {% endblock %}