src/Package/Openform/Front/Templates/AboutUs/index.html.twig line 1

Open in your IDE?
  1. {% from '@openform_front_templates/_includes/_icons.html.twig' import arrowright %}
  2. {% extends '@openform_front_templates/base.html.twig' %}
  3. {% block bodyAttr %}news-list-body{% endblock %}
  4. {% set pageSubTitle = entity.Translation[app.request.locale].title %}
  5. {% set metaTitle = entity.Translation[app.request.locale].metaTitle ? entity.Translation[app.request.locale].metaTitle : entity.Translation[app.request.locale].title %}
  6. {% set metaDescription = entity.Translation[app.request.locale].metaDescription %}
  7. {% set metaKeywords = entity.Translation[app.request.locale].metaKeywords %}
  8. {% set pageImage = entity.imagePath ? openform_front_util.getImagePathByType(entity.Thumb,'list') : '' %}
  9. {% block content %}
  10.     {% include "@openform_front_templates/_blocks_sections/block.html.twig" with { sections: openform_front_util.getSections(entity)|length > 0 ? openform_front_util.getSections(entity)|slice(0, 1) : '' } %}
  11.     <section class="index-news" data-scroll-section>
  12.         {% if openform_front_util.Config.showHomeNews %}
  13.         
  14.         <div class="index-news__wrapper container">
  15.             
  16.             
  17.             <h1 class="index-news__title home-title">{{ 'T_NEWS'|trans({}, 'openform_front', app.request.locale) }}</h1>
  18.             <div class="index-news__items">
  19.                 {% for item in entities|slice(0, 4) %}
  20.                     {% include '@openform_front_templates/AboutUs/_item.html.twig' with {item} %}
  21.                 {% endfor %}
  22.             </div>
  23.             {% set url = openform_front_util.pageUrlByIdName('page_news', app.request.locale) %}
  24.             <a href="{{url}}" class="btn btn--color-white btn--position-right">
  25.                 <span>{{('T_SEE_ALL_NEWS')|trans({}, 'openform_front', app.request.locale)}}</span> {{arrowright()}}
  26.             </a>
  27.         </div>
  28.        {% endif %}
  29.     
  30.     
  31.     {% include "@openform_front_templates/_blocks_sections/block.html.twig" with { sections: openform_front_util.getSections(entity)|length > 0 ? openform_front_util.getSections(entity)|slice(1, openform_front_util.getSections(entity)|length) : '' } %}
  32.     </section>
  33. {% endblock %}