Advertisement
Guest User

Untitled

a guest
Apr 13th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
  2.  
  3. Outside for loop
  4. data.image: {data.image}
  5. keys: {array_keys(data.image)}
  6.  
  7. <f:for each="{data.image}" as="image">
  8. <figure class="captioned-image" >
  9.  
  10. Image: {image}
  11. Image.url: {image.url}
  12. Image.file: {image.file}
  13. Image.description: {image.description}
  14. Image.title: {image.title}
  15.  
  16. <img src="{image.url}" />
  17.  
  18. <figcaption>
  19. {image.description}
  20. </figcaption>
  21. </figure>
  22. </f:for>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement