Carousel.html 850 B

123456789101112131415161718192021222324252627
  1. {namespace v=FluidTYPO3\Vhs\ViewHelpers}
  2. {namespace ot=Opentalent\OtTemplating\ViewHelpers}
  3. <f:comment><!--
  4. -- Resources.fal ViewHelper --
  5. Voir: https://fluidtypo3.org/viewhelpers/vhs/master/Page/Resources/FalViewHelper.html
  6. --></f:comment>
  7. <ot:carousel.images as="images"
  8. limit="5"
  9. countAs="count">
  10. <f:if condition="{count} > 0">
  11. <div class="carousel">
  12. <f:for each="{images}" as="image">
  13. <div>
  14. <ot:imageP src="{image.url}"
  15. alt="{image.alternative}"
  16. title="{image.title}"
  17. class="carousel-img"
  18. height="500c"
  19. />
  20. </div>
  21. </f:for>
  22. </div>
  23. </f:if>
  24. </ot:carousel.images>