templates/Tour/detail/recommendations.html.twig line 1

Open in your IDE?
  1. <section class="container content-block js-fade-in {{ anchorNavItem | default(null) ? 'js-anchor-nav__item' : '' }}"
  2.     {% if anchorNavItem | default(null) and anchorNavTitle | default(null) %}
  3.     data-anchor-nav-title="{{ anchorNavTitle }}"
  4.     {% endif %}>
  5.     {{ include('Includes/title-block.html.twig',
  6.         {
  7.             title: 'tour-detail.Unsere Touren-Empfehlungen'|trans,
  8.             subtitle: 'tour-detail.Das könnte Ihnen auch gefallen…'|trans,
  9.             isCentered: true
  10.         }
  11.     ) }}
  12.     <div class="teaser-slider js-scrolling-row">
  13.         <div class="row js-scrolling-row__row scrolling-row scrolling-row--invisible-scrollbar">
  14.             {% for tour in tours %}
  15.                 <div class="scrolling-row__item col-md-3 col-9 js-scrolling-row__item">
  16.                     {{ include('Tour/teaser.html.twig', {'tour': tour}) }}
  17.                 </div>
  18.             {% endfor %}
  19.         </div>
  20.         <div class="scrolling-row-navigation">
  21.             <button class="teaser-slider__btn scrolling-row__button scrolling-row__button--prev js-scrolling-row__prev"><span class="icon icon-arrow-right" aria-label="Previous"></span></button>
  22.             <button class="teaser-slider__btn scrolling-row__button scrolling-row__button--next js-scrolling-row__next"><span class="icon icon-arrow-right" aria-label="Next"></span></button>
  23.         </div>
  24.     </div>
  25. </section>