ds-site/Resources/Private/Templates/ContentElements/Video.html
Daniel Siepmann 746aaf3285 Add basic video content element and first video
Allow to render videos with native HTML5 support in browser.
A first example video is also added to fileadmin.
2020-08-19 23:01:35 +02:00

11 lines
317 B
HTML

<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">
{f:layout(name: 'Default')}
<f:section name="Content">
<f:for each="{videos}" as="video">
{f:render(partial: 'Video', arguments: {video: video})}
</f:for>
</f:section>
</html>