<div id="single-project-tablet" class="page--mainwrap p-0 slideJs single-project single-project-tablet">
<div class="page--mainwrap-header">
<h3 class="page--mainwrap-header-heading">{{ "Project details"|trans|upper }}</h3>
<hr>
{% include 'layouts/block/breadcrumbs.html.twig' %}
</div>
<div class="page--mainwrap-content">
<div class="page--mainwrap-content-desc single-project--content-desc">
<h3 class="single-project--content-desc-title txt--label">{{ project.name }}</h3>
<div class="single-project--content-desc-txt">
{{ project.description|raw }}
</div>
</div>
<div class="single-project--content-menus">
<div class="single-project--content-menus-item">
<h3 class="single-project--content-menus-item-title mobileview--toggler toggler--subtitle txt--label">{{ "Project details"|trans }}
<span class="mobileview--caretdown toggler--caretdown"><i class="fas fa-caret-down"></i></span></h3>
<div class="single-project--content-menus-item-txt mobileview--toggled-content toggler--list collapse show">
<ul>
{% if project.kindProject %}<li>{{ "Sector"|trans|raw }}:<a href="{{ path('pages_projects_filter_by_kind_project', { _locale: currentLocale, kindProjectSlug: project.kindProject.slug }) }}"> {{ project.kindProject|raw }}</a></li>{% endif %}
{% if project.architect %}
<li>
{% if project.websiteArchitect %}
{{ "Architect"|trans|raw }}: <a href=" {{ project.websiteArchitect }}" target="_blank">{{ project.architect|raw }}</a>
{% else %}
{{ "Architect"|trans|raw }}: {{ project.architect|raw }}
{% endif %}
</li>
{% endif %}
{% if project.country %}
{% set alpha = project.country.alpha2 %}
<li>{{ "Country"|trans|raw }}: {{ alpha|country_name|raw }}</li>
{% endif %}
{% if project.photography %}<li>{{ "Photography"|trans|raw }}: {{ project.photography|raw }}</li>{% endif %}
{% if project.installation %}<li>{{ "Installation"|trans|raw }}: {{ project.installation|raw }}</li>{% endif %}
</ul>
</div>
</div>
<div class="single-project--content-menus-item">
<h3 class="single-project--content-menus-item-title mobileview--toggler toggler--subtitle txt--label">{{ "Flooring details"|trans }}
<span class="mobileview--caretdown toggler--caretdown"><i class="fas fa-caret-down"></i></span></h3>
<div class="single-project--content-menus-item-txt mobileview--toggled-content toggler--list collapse">
<ul>
<li>
{{ project.products|length > 1 ? "Products"|trans|raw : "Product"|trans|raw }}:
{% for product in project.products %}
<a href="{{ path('pages_product_details', { _locale: currentLocale, 'collectionSlug': product.collection.slug, 'slug': product.slug, 'id': product.id }) }}">
{{ product.name }}
</a>
{{ loop.last ? '' : ',' }}
{% endfor %}
</li>
{% if project.areaM > 1 %}
{% set areaM = project.areaM %}
{% set areaF = areaM * 10.764 %}
<li>{{ "Surface"|trans }}: {{ areaM|format_number }} ㎡ - {{ areaF|format_number }} ft²</li>
{% endif %}
<li>{{ project.shapes|length > 1 ? "Shapes"|trans : "Shape"|trans }}:
{% for shape in project.shapes %}
<a href="{{ path('pages_2tec2Play_index', { _locale: currentLocale }) }}">
{{ shape.name|trans }}
</a>
{{ loop.last ? '' : '•' }}
{% endfor %}
</li>
</ul>
</div>
</div>
{% if project is defined %}
<div class="single-project--content-menus-item">
<h3 class="single-project--content-menus-item-title mobileview--toggler toggler--subtitle txt--label">{{ "Thumbnails"|trans }}
<span class="mobileview--caretdown toggler--caretdown"><i class="fas fa-caret-down"></i></span></h3>
<div class="single-project--content-magnets mobileview--toggled-content toggler--list collapse">
<div class="single-project--content-magnets-container scrollableDiv scrollableX">
<div class="scrollableX-content">
{% for key, img in project.attachmentsFile['urls'] %}
<div class="single-project--content-magnets-container-img">
<picture>
<source srcset="{{ img['webp']['thumb_180x180'] }}" type="image/webp">
<source srcset="{{ img['jpg']['thumb_180x180'] }}" type="image/jpeg">
<img src="{{ img['jpg']['thumb_180x180'] }}" alt="{{ project.name }} photo">
</picture>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% endif %}
</div>
<div class="page--mainwrap-content-button single-project--content-button d-flex justify-content-center mt-2">
<div class="d-flex justify-content-between col-12 p-0">
<a rel="canonical" href="{{ path("pages_3d_simulation_index", { _locale: currentLocale }) }}" class="cta-button btn page-btn">
{{ include('layouts/buttons/2tec2_3d_simulation.html.twig') }}
{{ "3D Simulation" | trans }}
</a>
</div>
<div class="d-flex justify-content-center col-12 p-0">
<a href="" class="add-project-to-download cta-button btn page-btn" data-project="{{ project.id }}">
{{ include('layouts/buttons/2tec2_uploads.html.twig') }}
{{ 'Images'|trans }}
</a>
</div>
</div>
</div>
<div class="page--mainwrap-arrow slideArrow">
<img src="{{ asset('build/icon/2tec2_arrow_bottom_black.svg') }}" alt="{{ 'caret down icon' | trans }}">
</div>
</div>
<div class="page--subwrap p-0 carouselLgDiv single-project-tablet">
<div class="page--subwrap-carousel-lg carouselLg carouselDiv carouselLg-alts">
</div>
</div>