templates/front/network/establishment.html.twig line 1

Open in your IDE?
  1. <!-- colocar esta clase b10LeftItemBoxNot si no existe informacio sobre el deparatamento en cuestion -->
  2. {% for item in establishments %}
  3.     <div class="b10LeftItem" data-id="{{ item.department.slug }}">
  4.         <!-- SI NO EXISTE INFORMACION EN FUNCION DEL DEPARTAMENTO SELECCIONADO -->
  5.         <div class="b10LeftItemBoxText">
  6.             <p>Por favor ponte en contacto con el punto de atención más cercano en Loreto</p>
  7.             <a href="{{ path('contact') }}" class="buttonStandard gray">Ir a contacto <i class="icon-iconos-6"></i></a>
  8.         </div>
  9.         <!-- END SI NO EXISTE INFORMACION EN FUNCION DEL DEPARTAMENTO SELECCIONADO -->
  10.         <div class="b10LeftItemBox">
  11.             <div class="b10LeftItemTitle">
  12.                 <h3>
  13.                     <figure class="b10img_icon">
  14.                         <img src="{{ asset(item.category.icon|image_path) }}" alt="{{ item.category.title }}">
  15.                     </figure>
  16.                     {# <i class="icon-camion1"></i> #}
  17.                     <span>{{ item.category.title }}</span>
  18.                 </h3>
  19.             </div>
  20.             <div class="b10LeftItemText">
  21.                 {{ item.title }}
  22.             </div>
  23.             <div class="b10LeftItemDates">
  24.                 <div class="b10LeftItemDatesLeft">
  25.                     <ul>
  26.                         <li>
  27.                             <i class="icon-iconos-18"></i>
  28.                             <span>{{ item.address|nl2br }}</span>
  29.                         </li>
  30.                     </ul>
  31.                     <ul>
  32.                         {% if item.phones|length > 0 %}
  33.                             <li>
  34.                                 <i class="icon-iconos-15"></i>
  35.                                 <span>
  36.                                     {% for phone in item.phones %}
  37.                                         <a href="tel:{{ phone.number|only_numbers }}">{{ phone.number }}</a> {{ loop.last ? '' : '/' }}
  38.                                     {% endfor %}
  39.                                 </span>
  40.                             </li>
  41.                         {% endif %}
  42.                         {% if item.emails|length > 0 %}
  43.                             <li>
  44.                                 <i class="icon-iconos-17"></i>
  45.                                 <span>
  46.                                     {% for email in item.emails %}
  47.                                         <a href="mailto:{{ email.email }}">{{ email.email }}</a> {{ loop.last ? '' : '/' }}
  48.                                     {% endfor %}
  49.                                 </span>
  50.                             </li>
  51.                         {% endif %}
  52.                     </ul>
  53.                 </div>
  54.                 {% if item.mapLink %}
  55.                     <div class="b10LeftItemDatesRight">
  56.                         <a href="{{ item.mapLink|external_url }}" target="_blank">
  57.                             <img src="{{ asset('assets/images/mapgoogle.png') }}" width="25" alt="mapgoogle">
  58.                         </a>
  59.                     </div>
  60.                 {% endif %}
  61.             </div>
  62.         </div>
  63.     </div>
  64. {% endfor %}