{% extends 'layout/base.html.twig' %}
{% block title %}{{ parent() }} – Building great products through superior engineering{% endblock %}
{% block seo_en %}{{ url('home_index') }}{% endblock %}
{% block seo_hu %}{{ url('home_index', {'lang': 'hu'}) }}{% endblock %}
{% block seo_x %}{{ url('home_index') }}{% endblock %}
{% block body_classes %}home-index{% endblock %}
{% block content %}
{% include 'page/home/components/banner.html.twig' %}
<div class="home-page" id="home">
{% include 'page/home/components/numbers.html.twig' %}
{% include 'common/components/news.html.twig' with { items: posts } only %}
{% include 'page/home/components/technology-livestream.html.twig' %}
{% include 'page/home/components/our-operations.html.twig' %}
{% include 'page/home/components/technology-billing.html.twig' %}
{% include 'common/components/jobs.html.twig' with { items: jobs } only %}
</div>
{% include 'common/components/contact_form.html.twig' with { defaultInquiry: true } only %}
{% endblock %}