Mr_media

video_html

Oct 14th, 2020
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1.  
  2. <!-- File to overwrite the Video.html - core extension fluid_styled_content -->
  3.  
  4. <html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
  5. <figure class="video">
  6. <f:if condition="{file.originalFile.properties.extension} == 'youtube'">
  7. <f:then>
  8. <a data-fancybox="gallery" class="gallery--youtube" href="https://www.youtube.com/embed/{file.contents}" data-width="640" data-height="360" data-caption="{file.description}">
  9. <f:image image="{file}" height="200" width="400" />
  10. </a>
  11. <f:if condition="{file.description}">
  12. <figcaption class="video-caption">
  13. <h1>{file.description}</h1>
  14. </figcaption>
  15. </f:if>
  16.  
  17. </f:then>
  18. <f:else>
  19. <div class="video-embed">
  20. <f:render partial="Media/Rendering/Video" arguments="{file: file, dimensions: dimensions, settings: settings}" />
  21. </div>
  22. <f:if condition="{file.description}">
  23. <figcaption class="video-caption">
  24. {file.description}
  25. </figcaption>
  26. </f:if>
  27. </f:else>
  28. </f:if>
  29. </figure>
  30. </html>
  31.  
  32.  
Add Comment
Please, Sign In to add comment