templates/components/HomeHero.html.twig line 1

Open in your IDE?
  1. <section class="home-hero">
  2. <div class="container">
  3. <div class="home-hero__content">
  4. <h1 class="home-hero__title">
  5. {{ title }}
  6. </h1>
  7. {% if block('content') %}
  8. <div class="home-hero__content-inner">
  9. {% block content %}{% endblock %}
  10. </div>
  11. {% endif %}
  12. </div>
  13. {% if block('image') %}
  14. <div class="home-hero__image">
  15. {% block image %}{% endblock %}
  16. </div>
  17. {% endif %}
  18. </div>
  19. {% if block('buttons') %}
  20. <div class="container">
  21. <div class="home-hero__buttons">
  22. {% block buttons %}{% endblock %}
  23. </div>
  24. </div>
  25. {% endif %}
  26. </section>