templates/includes/aside/common/common_aside_selections.html.twig line 1

Open in your IDE?
  1. {% if type_aides is defined and type_aides %}
  2.     {% for k_type_aide,type_aide_content in type_aides %}
  3.     <section class="tc-panel tc-tablet-1_1">
  4.         <div class=" tc-border-context ">
  5.             <div class="tc-panel-header tc-bg-extralight-gray">
  6.                 <h3>{{ type_aide_content.label }}</h3>
  7.             </div>
  8.             {% if type_aide_content.aides is defined and type_aide_content.aides %}
  9.                 {% for aide in type_aide_content.aides %}
  10.                 <div class="tc-panel-body">
  11.                     <div class="tc-block">
  12.                         <div class="tc-block-header">
  13.                         </div>
  14.                         <div class="tc-block-body">
  15.                             {% if aide.aide.contact.profile_picture is defined and aide.aide.contact.profile_picture %}
  16.                             <figure class="tc-media-thumbnail">
  17.                                 <img class=" tc-border-neutral" src="{{ aide.aide.contact.profile_picture }}" width="100px" />
  18.                             </figure>
  19.                             {% endif %}
  20.                             <div class="tc-block-body-text">
  21.                                 {% if k_type_aide != "recommandations" %}
  22.                                     <p>
  23.                                         {% if aide.year_start is defined and aide.year_start %}
  24.                                             {{ aide.year_start }}
  25.                                         {% endif %}
  26.                                     </p>
  27.                                     <p>{{ aide.aide.aidecontact.title }}</p>
  28.                                     <span class="prix_detail">{{ aide.aide.aide }}</span>
  29.                                 {% endif %}
  30.                                 {% if k_type_aide == "recommandations" %}
  31.                                     <p><a href="/contacts/{{ aide.aide.contact.urlClean }}/spectacles">{{ aide.aide.contact.organisation }}</a></p>
  32.                                 {% else %}
  33.                                     <p><a href="/contacts/{{ aide.aide.contact.urlClean }}/{{ k_type_aide }}/">{{ aide.aide.contact.organisation }}</a></p>
  34.                                 {% endif %}
  35.     <!--                            <span class="prix_type">{aide[aide][type_aide_label]}</span>-->
  36.                                 {% if aide.url is defined and aide.url %}
  37.                                 <p class="prix_aide_contact"><a href="{{ aide.url }}" target="__blank">+ d'infos (site externe)</a></p>
  38.                                 {% endif %}
  39.                             </div>
  40.                         </div>
  41.                     </div>
  42.                 </div>
  43.                 {% endfor %}
  44.             {% endif %}
  45.         </div>
  46.     </section>
  47.     {% endfor %}
  48. {% endif %}