Carousel.html 982 B

12345678910111213141516171819202122232425262728293031
  1. {namespace v=FluidTYPO3\Vhs\ViewHelpers}
  2. <f:comment><!--
  3. -- Resources.fal ViewHelper --
  4. Voir: https://fluidtypo3.org/viewhelpers/vhs/master/Page/Resources/FalViewHelper.html
  5. --></f:comment>
  6. <v:page.resources.fal table="pages"
  7. field="media"
  8. uid="{page.uid}"
  9. as="images"
  10. slide="-1"
  11. limit="10" >
  12. <div class="carousel">
  13. <f:for each="{images}" as="image">
  14. <f:if condition="{v:variable.pregMatch(pattern: '/.*(?:jpe?g|gif|png)$/', subject: image.url)}">
  15. <div>
  16. <f:image src="{image.url}"
  17. alt="{image.alternative}"
  18. title="{image.title}"
  19. class="carousel-img"
  20. height="500c"
  21. />
  22. </div>
  23. </f:if>
  24. </f:for>
  25. </div>
  26. </v:page.resources.fal>