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

Open in your IDE?
  1. {% extends 'layout/base.html.twig' %}
  2. {% block title %}{{ parent() }} – Building great products through superior engineering{% endblock %}
  3. {% block seo_en %}{{ url('home_index') }}{% endblock %}
  4. {% block seo_hu %}{{ url('home_index', {'lang': 'hu'}) }}{% endblock %}
  5. {% block seo_x %}{{ url('home_index') }}{% endblock %}
  6. {% block body_classes %}home-index{% endblock %}
  7. {% block content %}
  8.     {% include 'page/home/components/banner.html.twig' %}
  9.     <div class="home-page" id="home">
  10.         {% include 'page/home/components/numbers.html.twig' %}
  11.         {% include 'common/components/news.html.twig' with { items: posts } only %}
  12.         {% include 'page/home/components/technology-livestream.html.twig' %}
  13.         {% include 'page/home/components/our-operations.html.twig' %}
  14.         {% include 'page/home/components/technology-billing.html.twig' %}
  15.         {% include 'common/components/jobs.html.twig' with { items: jobs } only %}
  16.     </div>
  17.     {% include 'common/components/contact_form.html.twig' with { defaultInquiry: true } only %}
  18. {% endblock %}