templates/_common/popular_speakers_block_dates.html.twig line 1

Open in your IDE?
  1. <div class="wrapper_main">
  2. {#    <div class="card_sort">
  3.         Сортировка:
  4.         <span>
  5.         <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
  6.         <g clip-path="url(#clip0_2005_23305)">
  7.             <path d="M19.0266 8.66665H4.97331C4.7965 8.66665 4.62693 8.59641 4.5019 8.47138C4.37688 8.34636 4.30664 8.17679 4.30664 7.99998C4.30664 7.82317 4.37688 7.6536 4.5019 7.52858C4.62693 7.40355 4.7965 7.33331 4.97331 7.33331H19.0266C19.2035 7.33331 19.373 7.40355 19.498 7.52858C19.6231 7.6536 19.6933 7.82317 19.6933 7.99998C19.6933 8.17679 19.6231 8.34636 19.498 8.47138C19.373 8.59641 19.2035 8.66665 19.0266 8.66665Z" fill="black"/>
  8.             <path d="M14.1133 12.6666H4.97331C4.7965 12.6666 4.62693 12.5964 4.5019 12.4714C4.37688 12.3464 4.30664 12.1768 4.30664 12C4.30664 11.8232 4.37688 11.6536 4.5019 11.5286C4.62693 11.4036 4.7965 11.3333 4.97331 11.3333H14.1133C14.2901 11.3333 14.4597 11.4036 14.5847 11.5286C14.7097 11.6536 14.78 11.8232 14.78 12C14.78 12.1768 14.7097 12.3464 14.5847 12.4714C14.4597 12.5964 14.2901 12.6666 14.1133 12.6666Z" fill="black"/>
  9.             <path d="M9.15997 16.6666H4.97331C4.7965 16.6666 4.62693 16.5964 4.5019 16.4714C4.37688 16.3464 4.30664 16.1768 4.30664 16C4.30664 15.8232 4.37688 15.6536 4.5019 15.5286C4.62693 15.4036 4.7965 15.3333 4.97331 15.3333H9.15997C9.33678 15.3333 9.50635 15.4036 9.63138 15.5286C9.7564 15.6536 9.82664 15.8232 9.82664 16C9.82664 16.1768 9.7564 16.3464 9.63138 16.4714C9.50635 16.5964 9.33678 16.6666 9.15997 16.6666Z" fill="black"/>
  10.         </g>
  11.         <defs>
  12.             <clipPath id="clip0_2005_23305">
  13.             <rect width="24" height="24" fill="white"/>
  14.             </clipPath>
  15.         </defs>
  16.         </svg>
  17.             По дате
  18.         </span>
  19.     </div>#}
  20.     <div class="card_list wrapper_main">
  21.         {% for item in popular_speakers() %}
  22.             {{ include('_common/speaker_list_card_main.html.twig', {'item': item, 'containerClass': 'card', 'showRating': false}) }}
  23.         {% endfor %}
  24.     </div>
  25.     <div class="loadmore_wrapper">
  26.         <button class="button_loadmore" onclick="document.location.href='{{ path('speaker.list') }}'">
  27.             Показать больше
  28.         </button>
  29.     </div>
  30. </div>