src/Package/Openform/Front/Templates/Search/_search-item.html.twig line 1

Open in your IDE?
  1. <a 
  2.     class="newsXX-item search-list-item" 
  3.     href="{{ url }}" 
  4.     aria-label="{{ 'T_READ_MORE'|trans({}, 'openform_front', app.request.locale) }} {{ entity.Translation[app.request.locale].title }}"
  5. >
  6.     <div class="search-list-item__content{% if entity.imagePath %} search-list-item__content--image{% endif %}">
  7.         <ul class="search-list-item__content__wrap">
  8.             {% for parent in search.parentsArray %}
  9.                 {% if parent.isSkipped is not defined or not parent.isSkipped %}
  10.                     <li>{{ ('T_SEARCH_ITEM_'  ~ ( parent|getClassName|upper ) )|trans({}, 'openform_front', app.request.locale) }}: <span>{{ parent.Translation[app.request.locale].title }}</span></li>
  11.                 {% endif %}
  12.             {% endfor %}
  13.         </ul>
  14.         {% if entity.imagePath  %}
  15.             <div class="search-list-item__image">
  16.                 {% set pageImage = entity.imagePath ? openform_front_util.getImagePathByType(entity.Thumb,'search') : '' %}
  17.                 
  18.                 <img src="{{ pageImage }}" alt="{{ entity.Translation[app.request.locale].alt is defined ? entity.Translation[app.request.locale].alt }}">
  19.             </div>
  20.         {% endif %}
  21.         
  22.         {# <strong style="color:red">{{ entityName }}</strong>: 
  23.         
  24.         <div class="news-item__title js-news-title">
  25.             {{ entity.Translation[app.request.locale].title }}
  26.         </div> #}
  27.         {% if entity.Translation[app.request.locale].shortLead is defined and entity.Translation[app.request.locale].shortLead|length > 0 %}
  28.             <p class="search-list-item__content__desc block__text">{{ entity.Translation[app.request.locale].shortLead|striptags[:250] ~ '...' }}</p>
  29.         {% else  %}
  30.             <p class="search-list-item__content__desc block__text">{{ entity.Translation[app.request.locale].text|striptags[:250] ~ '...' }}</p>
  31.         {% endif %}
  32.     </div>
  33. </a>