templates/front/layouts/footer.html.twig line 1

Open in your IDE?
  1. <div >
  2.     <div class="footer_wfo_wrapper" >
  3.         <div class="container get_footer_div">
  4.             <div class="navigation {% if forHome is defined and forHome %}front-home{% endif %}">
  5.                 {#<button class="next_step___btn radius_10">
  6.                     <span class="next_step">{{'front.next'|trans({}, 'front')}}</span>
  7.                     <span class="send_form">{{'front.send'|trans({}, 'front')}}</span>
  8.                 </button>#}
  9.                 {% if detailsFooter is defined and detailsFooter %}
  10.                     <a href="{{ path('front_home')}}" class="home_button"  >
  11.                         <svg xmlns="http://www.w3.org/2000/svg" width="38.866" height="41.022" viewBox="0 0 38.866 41.022">
  12.                             <path id="home" d="M12.917,36.422v-5.95a2.767,2.767,0,0,1,2.763-2.753h5.6a2.767,2.767,0,0,1,2.781,2.753h0V36.44a2.377,2.377,0,0,0,2.333,2.365h3.733a6.705,6.705,0,0,0,6.738-6.671h0V15.208A4.733,4.733,0,0,0,35,11.512L22.231,1.33a6.171,6.171,0,0,0-7.653,0L1.867,11.53A4.7,4.7,0,0,0,0,15.226V32.135a6.705,6.705,0,0,0,6.738,6.671h3.733a2.4,2.4,0,0,0,2.408-2.384h0" transform="translate(1 1.216)" fill="none" 
  13.                             stroke="{% if survey is defined and survey.surveyColor %} {{ survey.surveyColor }}  {% else %} #C9428A {% endif %}" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"></path>
  14.                         </svg>                                               
  15.                     </a>
  16.                     <button class="previous_step___btn radius_10" value="" {% if survey is defined and survey.surveyColor %} style="background-color : {{ survey.surveyColor }} !important" {% endif %}>{{'front.previous'|trans({}, 'front')}} </button>
  17.                 {% endif %}
  18.                 {% if pathRetur is defined and pathRetur %}
  19.                     {#<a href="{{ pathRetur }}">
  20.                         <svg class="" xmlns="http://www.w3.org/2000/svg" width="43.243" height="34.538" viewBox="0 0 43.243 34.538">
  21.                             <path id="back-svgrepo-com_1_" data-name="back-svgrepo-com (1)" d="M5.907,17.7,4.246,19.356,2.586,17.7l1.661-1.661ZM45.829,36.482a2.348,2.348,0,1,1-4.7,0ZM15.988,31.1,4.246,19.356l3.321-3.321L19.309,27.777ZM4.246,16.035,15.988,4.293l3.321,3.321L7.567,19.356Zm1.661-.688H29.391v4.7H5.907ZM45.829,31.785v4.7h-4.7v-4.7ZM29.391,15.347A16.439,16.439,0,0,1,45.829,31.785h-4.7A11.742,11.742,0,0,0,29.391,20.044Z" transform="translate(-2.586 -4.293)" fill="#3c2a5c"></path>
  22.                         </svg>
  23.                     </a>#}
  24.                     <a href="{{ pathRetur }}" type="button" class="return_button">
  25.                         {{'front.previous'|trans({}, 'front')}}
  26.                     </a>
  27.                 {% endif %}    
  28.             </div>
  29.         </div>
  30.         <div class="container">
  31.             <div class="netisse_wfo_footer">
  32.                 {% if infoGeneral.medias %}
  33.                     {% for key, media in infoGeneral.medias %}
  34.                         {% set media = media[0] %}
  35.                         {% if media.typeMedia == constant('App\\Entity\\Media::TYPE_MEDIA_GUIDE') %}
  36.                             <div class="guide__wfo"> 
  37.                                 {% if forHome is not defined or forHome is defined and forHome == false %}
  38.                                     <a href="{{ asset(uploads_directory ~ media.path ~ '/' ~ media.file) }}"  src="{{ asset(uploads_directory ~ media.path ~ '/' ~ media.file) }}" download class="download_link">
  39.                                         <svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18">
  40.                                             <path id="document-text-svgrepo-com" d="M4,1A2,2,0,0,0,2,3V17a2,2,0,0,0,2,2H16a2,2,0,0,0,2-2V7.414A2,2,0,0,0,17.414,6L13,1.586A2,2,0,0,0,11.586,1ZM4,3h7.586L16,7.414V17H4ZM6,5A1,1,0,0,0,6,7h5a1,1,0,0,0,0-2ZM5,10A1,1,0,0,1,6,9h8a1,1,0,0,1,0,2H6A1,1,0,0,1,5,10Zm1,3a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z" transform="translate(-2 -1)" fill-rule="evenodd"/>
  41.                                         </svg> 
  42.                                         {{ media.title }}
  43.                                     </a>
  44.                                 {% endif %}    
  45.                             </div>
  46.                         {% endif %}    
  47.                     {% endfor %}
  48.                     {% set guide = null %}
  49.                 {% endif %}
  50.             
  51.                 {{ include('front/layouts/powered_by.html.twig') }}
  52.                 
  53.             </div>
  54.         </div>
  55.     </div>
  56. </div>