{% extends 'base.html.twig' %} {% block title %}{% if Product.titleTag is not empty %}{{ Product.titleTag }}{% endif %}{% endblock %} {% block meta %}{% if Product.metaDescription is not empty %}{{ Product.metaDescription }}{% endif %}{% endblock %} {% block body %} {% include('elements/_navigation.html.twig') %}

{{ Product.title }}

{{ Product.h1 }}

{{ Product.metaDescription}}

{{ 'translate.buy_or_lease_now'|trans }}

{% if Product.glbImage is not empty %}
{% else %} {{ Product.title }} {% endif %}
{{ Product.h4 }} - {{ 'translate.specification'|trans }}
    {% for spec in Specs %}
  • {{ spec.title }}
  • {% endfor %}
{% if Product.downloadLink is not empty %}

{{ 'translate.download_pdf'|trans }}

{% endif %}
{% if PageItems is not empty %}

{{ Product.itemsTitle }}

{{ Product.itemsDescription }}

{% for item in PageItems %}
{% if item.image %} {% endif %}

{{ item.name }}

{{ item.shortDescription|raw }}

{% endfor %}
{% endif %}

{{ Product.galleryTitle }}

{{ Product.galleryDescription }}

{% for photo in Photos %} {% endfor %}
{% if Videos is not empty %}

{{ Product.videoTitle }}

{{ Product.videoDescription }}

{% for vid in Videos %}
{% endfor %}
{% endif %}

{{ Product.h3 }}

{% include('elements/_products_page_small.html.twig') %} {% include('elements/_footer.html.twig') %} {% endblock %}