templates/front/landing.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3.     <div class="container">
  4.         <h1 class="text-center">Landing</h1>
  5.         <hr/>
  6.         {% if asbtemplate.landing.lastPosts %}
  7.             {% include "front/postsList.html.twig" %}
  8.         {% endif %}
  9.         {% if asbtemplate.landing.partners %}
  10.             {% include "front/partnersList.html.twig" %}
  11.         {% endif %}
  12.     </div>
  13. {% endblock %}