templates/default/tag.html.twig line 1

Open in your IDE?
  1. <div class="row content-jus">
  2.     {% for product in products %}
  3.         <div class="col-lg-2 col-md-3 col-sm-6 col-xl-2">
  4.             <article class="product" productid="{{ product.Id }}">
  5.                 <div class="thumb-pad2 maxheight1">
  6.                     <div class="box_inner">
  7.                         <div class="thumbnail">
  8.                             <figure>
  9.                                 {% if product.Category.Id == 69 %}
  10.                                     <a target="_blank" href="https://www.youscribe.com/BookReader/AudioReader?productId={{ product.Id }}&ysauth={{ tokenUser }}">
  11.                                         <img class="img-livre img-thumbnail" src="{{ product.ThumbnailUrls[0].Url }}"></a>
  12.                                 {% else %}
  13.                                     <a target="_blank" href="https://www.youscribe.com/BookReader/Index/{{ product.Id }}?ysauth={{ tokenUser }}">
  14.                                         <img class="img-livre img-thumbnail" src="{{ product.ThumbnailUrls[0].Url }}"></a>
  15.                                 {% endif %}
  16.                             </figure>
  17.                             <div class="c-product-infos c-product-infos-product">
  18.                                 {% if product.Category.Id == 69 %}
  19.                                     <a target="_blank" class="c-product-infos-title" href="https://www.youscribe.com/BookReader/AudioReader?productId={{ product.Id }}&ysauth={{ tokenUser }}">
  20.                                         {{ product.Title }}
  21.                                     </a>
  22.                                 {% else %}
  23.                                     <a target="_blank" class="c-product-infos-title" href="https://www.youscribe.com/BookReader/Index/{{ product.Id }}?ysauth={{ tokenUser }}">
  24.                                         {{ product.Title }}
  25.                                     </a>
  26.                                 {% endif %}
  27.                                 <p class="title">
  28.                                     {{ product.OwnerDisplayableUserName is defined ? product.OwnerDisplayableUserName : '' }}
  29.                                 </p>
  30.                             </div>
  31.                             {% if product.Category.Id == 69 %}
  32.                                 <div class="middle">
  33.                                     <a target="_blank" class="btn btn-info btn-shadow font-weight-bold waves-effect waves-themed text" href="https://www.youscribe.com/BookReader/AudioReader?productId={{ product.Id }}&ysauth={{ tokenUser }}">
  34.                                         Lire
  35.                                     </a>
  36.                                 </div>
  37.                                 <div class="middle-preview d-none d-sm-block">
  38.                                     <a href="https://www.youscribe.com/BookReader/AudioReader?productId={{ product.Id }}&ysauth={{ tokenUser }}" target="_blank" class="btn btn-default btn-shadow font-weight-bold waves-effect waves-themed no-click text" href="#" data-toggle="popover" data-html="true" data-offset="0,5" data-trigger="hover" data-placement="right" title="" data-content='{% include 'default/preview.html.twig' %}'>
  39.                                         Preview
  40.                                     </a>
  41.                                 </div>
  42.                             {% else %}
  43.                                 <div class="middle">
  44.                                     <a target="_blank" class="btn btn-info btn-shadow font-weight-bold waves-effect waves-themed text" href="https://www.youscribe.com/BookReader/Index/{{ product.Id }}?ysauth={{ tokenUser }}">
  45.                                         Lire
  46.                                     </a>
  47.                                 </div>
  48.                                 <div class="middle-preview d-none d-sm-block">
  49.                                     <a href="https://www.youscribe.com/BookReader/Index/{{ product.Id }}?ysauth={{ tokenUser }}" target="_blank" class="btn btn-default btn-shadow font-weight-bold waves-effect waves-themed no-click text" href="#" data-toggle="popover" data-html="true" data-offset="0,5" data-trigger="hover" data-placement="right" title="" data-content='{% include 'default/preview.html.twig' %}'>
  50.                                         Preview
  51.                                     </a>
  52.                                 </div>
  53.                             {% endif %}
  54.                         </div>
  55.                     </div>
  56.                 </div>
  57.             </article>
  58.         </div>
  59.     {% endfor %}
  60.     <div class="offset-md-4 col-lg-12 col-md-12 col-sm-12 col-xl-12">
  61.         {{ knp_pagination_render(products , '@KnpPaginator/Pagination/twitter_bootstrap_v4_pagination.html.twig') }}
  62.     </div>
  63. </div>