templates/frontend/template/homepage.html.twig line 1
{% extends "frontend/base.html.twig" %}
{% block title %}{{ page.title }}{% endblock %}
{% block body %}
{% include 'frontend/block/hero_image.html.twig' with { 'block': page.metaDecoded('hero_image')|merge({ 'slider': true }) } %}
<div class="block block-car-list container">
<div class="block-car-list-header">
<h2 class="block-car-list-title">Ihned k odběru</h2>
<div class="block-car-list-buttons">
{% for category in app_car_categories() %}
<a href="{{ app_url('car_category', { id: category.id }) }}" class="button"><span>{{ category.title }}</span></a>
{% endfor %}
</div>
</div>
<div class="car-list">
{% include 'frontend/api/cars_list.html.twig' with { 'cars': app_cars('latest') } %}
</div>
</div>
{% include 'frontend/block/information_with_gallery_and_tabs.html.twig' with { 'block': page.metaDecoded('services') } %}
{% include 'frontend/block/how_it_works.html.twig' with { block: page.metaDecoded('how_it_works') } %}
{% include 'frontend/block/accident.html.twig' %}
{% include 'frontend/block/clients.html.twig' %}
{% include 'frontend/block/instagram_feed.html.twig' %}
{% include 'frontend/block/contact.html.twig' %}
{% endblock %}