templates/frontend/template/homepage.html.twig line 1

  1. {% extends "frontend/base.html.twig" %}
  2. {% block title %}{{ page.title }}{% endblock %}
  3. {% block body %}
  4. {% include 'frontend/block/hero_image.html.twig' with { 'block': page.metaDecoded('hero_image')|merge({ 'slider': true }) } %}
  5. <div class="block block-car-list container">
  6.     <div class="block-car-list-header">
  7.         <h2 class="block-car-list-title">Ihned k odbÄ›ru</h2>
  8.         <div class="block-car-list-buttons">
  9.         {% for category in app_car_categories() %}
  10.             <a href="{{ app_url('car_category', { id: category.id }) }}" class="button"><span>{{ category.title }}</span></a>
  11.         {% endfor %}
  12.         </div>
  13.     </div>
  14.     <div class="car-list">
  15.         {% include 'frontend/api/cars_list.html.twig' with { 'cars': app_cars('latest') } %}
  16.     </div>
  17. </div>
  18. {% include 'frontend/block/information_with_gallery_and_tabs.html.twig' with { 'block': page.metaDecoded('services') } %}
  19. {% include 'frontend/block/how_it_works.html.twig' with { block: page.metaDecoded('how_it_works') } %}
  20. {% include 'frontend/block/accident.html.twig' %}
  21. {% include 'frontend/block/clients.html.twig' %}
  22. {% include 'frontend/block/instagram_feed.html.twig' %}
  23. {% include 'frontend/block/contact.html.twig' %}
  24. {% endblock %}