src/Package/Openform/Front/Templates/AntiqueSuit/antique_item.html.twig line 1

Open in your IDE?
  1. {% extends "@openform_front_templates/base.html.twig" %}
  2. {% block bodyAttr %}data-page="detail-page"{% endblock %}
  3. {% set pageSubTitle = entity.Translation[app.request.locale].title %}
  4. {% set metaTitle = entity.Translation[app.request.locale].metaTitle ? entity.Translation[app.request.locale].metaTitle : entity.Translation[app.request.locale].title %}
  5. {% set metaDescription = entity.Translation[app.request.locale].metaDescription %}
  6. {% set metaKeywords = entity.Translation[app.request.locale].metaKeywords %}
  7. {% set pageImage = entity.imagePath ? openform_front_util.getImagePathByType(entity.Thumb,'list') : '' %}
  8. {% set mobile = openform_front_util.isMobileDevice() %}
  9. {% block contentClass %}{% if entity.templateId == 6 and mobile == false %}no-padding{% endif %}{% endblock %}
  10. {% block header %}
  11.     {% if entity.templateId == 6 and mobile == false and not entity.textAreaWidth is same as(0) %}
  12.     {% else %}
  13.         {% include "@openform_front_templates/_includes/_header_mak.html.twig" %}
  14.     {% endif %}
  15. {% endblock %}
  16. {% block content %}    
  17.      {# WYBRANY SZABLON: nr {{ entity.templateId }} #}
  18.     {# no i tutaj jakiś inkludzik czy coś  w tym stylu #}
  19.     
  20.     {% if mobile %}
  21.         {{ include('@openform_front_templates/AntiqueSuit/_templates/_template-mobile.html.twig', {entity: entity}) }}
  22.     {% else %}
  23.         
  24.   <div class="background-mak-default" style="{% if entity.background is defined or rootParent.background is defined %}background-color: {{entity.background is defined and entity.background|length > 0 and entity.background ? entity.background : rootParent.background is defined and rootParent.background|length > 0 ? rootParent.background}}{% endif %}">
  25.     
  26.     {{ include('@openform_front_templates/AntiqueSuit/_templates/_template-' ~ entity.templateId ~ '.html.twig', {entity: entity}) }}
  27.     </div>
  28.     {% endif %}
  29. {% endblock %}