{% extends 'base.html.twig' %} {% block title %}Technoone{% endblock %} {% block content %} {% include "components/_intro.html.twig" with {options: { title: "homepage_intro_title"|trans|title, description: "homepage_intro_description"|trans, skip: ".home-about", breadcrumb: false }} %}
{{"about_technoone"|trans|title}}
{% include "components/_text-container.html.twig" with {content: { title: "homepage_software_services_section_title"|trans|title, description: "homepage_software_services_section_description"|trans|capitalize, link: path('service_detail', {'alias': 'test'}) }} %}
{% include "components/_text-container.html.twig" with {content: { title: "homepage_projects_section_title"|trans|title, description: "homepage_projects_section_description"|trans|capitalize, }} %}
{% for project in getProjects({'homeProjects': true}, app.request) %} {% set projectLang = getLang(project.getProjectLangs(), app.request) %}
{{projectLang.homeProjectsDescription}}
{% endfor %}
{% set i = 0 %} {% set break = false %} {% for service in services %} {% if not break %} {% set serviceLang = serviceLangs[i] %} {% if serviceLang %} {% set i = i + 1 %}
{{serviceLang.title|title}}
{% if i == 4 %} {% set break = true %} {% endif %} {% endif %} {% endif %} {% endfor %}
{% set homeBrands = getProjects({'homeBrands': true}, app.request) %}

{{"our_brands"|trans|title}}

{{"brands_slider_description"|trans|capitalize}}
{% for brandItem in homeBrands %} {% set brandLang = getLang(brandItem.getProjectLangs(), app.request) %}
{# {% for tagId in brandItem.tagIdArray["content"] %} {% set tag = getProjectTag(tagId, app.request) %}
{{tag}}
{% endfor %} #}

{{ brandLang.title }}

{{ brandLang.homeBrandsDescription }} {{"for_more_info"|trans|capitalize}}
{% endfor %}
{% include 'components/_locations-slider.html.twig' %} {% include 'components/_blog-section.html.twig' %} {% include 'components/_intern-section.html.twig' %} {% endblock %}