templates/front/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'front/base/base.html.twig' %}
  2. {% block meta_description %}{{'home.meta.description'|trans }}{% endblock %}
  3. {% block link_rel_alternate %}
  4. {% for lang in cms_links(0) %}
  5. <link rel="alternate" href="{{ lang.url }}" hreflang="{% if lang.isoCodeReal is not empty %}{{ lang.isoCodeReal }}{% else %}{{ lang.isoCode }}{% endif %}" />
  6. {% endfor %}
  7. {% endblock %}
  8. {% block link_rel_canonical %}
  9. <link rel="canonical" href="{{ url('homepage') }}">
  10. {% endblock %}
  11. {% block facebook_pixel_event %}{% endblock %}
  12. {% block content %}
  13. <div class="content content--full content--light cms" id="corporative-home">
  14. {% include 'include/cms/sticky.html.twig' %}
  15. {{ landingHtml|raw }}
  16. </div>
  17. {% endblock %}
  18. {% block javascript %}
  19. <script>
  20. $('document').ready(function(){
  21. $('[data-js-btn="loginBtn"]').trigger('mousedown')
  22. });
  23. </script>
  24. {% endblock %}