Last active
July 30, 2020 14:02
-
-
Save a-r-m-i-n/ef22ed696403e583631a to your computer and use it in GitHub Desktop.
How to render responsive images in fluid templates (dce example)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{namespace dce=ArminVieweg\Dce\ViewHelpers} | |
<f:layout name="Default" /> | |
<f:section name="main"> | |
<f:for each="{dce:fal(field:'images', contentObject:contentObject)}" as="image"> | |
<!-- This is the normal unresponsive way --> | |
<f:image image="{image}" /> | |
<!-- Here we referer to typoscript to render the responsive image --> | |
<f:cObject typoscriptObjectPath="lib.responsiveImage" data="{image.uid}"></f:cObject> | |
</f:for> | |
</f:section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lib.responsiveImage = IMAGE | |
lib.responsiveImage { | |
file { | |
import.current = 1 | |
treatIdAsReference = 1 | |
} | |
sourceCollection < tt_content.image.20.1.sourceCollection | |
layout < tt_content.image.20.1.layout | |
layoutKey = {$styles.content.imgtext.layoutKey} | |
} |
I have exactly the same problem:
<f:for each="{item.image -> dce:explode()}" as="imageUid">
<f:image src="file:{imageUid}"/>
</f:for>
Is there any solution for this?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there a way to apply the same technique for section images?