templates/components/home_testimonios/testimonios.html.twig line 1

Open in your IDE?
  1. {% block head %}
  2.     {% block stylesheets %}
  3.     {% endblock %}
  4. {% endblock %}
  5. <h2 class="osLight" style="font-weight: bold;">Categorias</h2>
  6. <div id="home-testimonials" class="carousel slide carousel-wb mb20" data-ride="carousel">
  7.     <ol class="carousel-indicators">
  8.         {% if categorias is defined %}
  9.             {% for categoria in categorias %}
  10.                 <li data-target="#home-testimonials" data-slide-to="{{ loop.index -1 }}" class="{{ loop.index == 1 ? 'active' : '' }}"></li>
  11.             {% endfor %}
  12.         {% endif %}
  13.     </ol>
  14.     <div class="carousel-inner">
  15.         {% if categorias is defined %}
  16.             {% for categoria in categorias %}
  17.                 <div class="item {{ loop.index == 1 ? 'active' : '' }} center">
  18.                     {% if categoria.imagen|length > 50 %}
  19.                         <center>
  20.                             <img src="{{ categoria.imagen }}" alt="{{ categoria.nombre }}" style="width: 200px;">
  21.                         </center>
  22.                     {% else %}
  23.                         <a href="{{ path('busqueda_sitios', {'id_categoria': categoria.id}) }}">
  24.                             <center>
  25.                                 <img src="{{ asset('uploads/imagen_categoria/') }}{{ categoria.imagen }}" alt="{{ categoria.nombre }}" style="width: 200px;">
  26.                             </center>
  27.                         </a>
  28.                     {% endif %}
  29.                 </div>
  30.             {% endfor %}
  31.         {% else %}
  32.             <h3>No Registra</h3>
  33.         {% endif %}
  34.     </div>
  35. </div>