Apparemment, je ne peux pas utiliser les tags de travail dans les block du module standard. Je souhaite écrire une rangée très simple qui utilise le tag conditionnel. Qui a une solution ?
Voici le code de ce que je souhaite faire
Code :
<row>
<block module="standard" type="image" id="image" maxWidth="400">
<atm-if what="{{imageZoomName}}">
<a title="{{label}}" href="{{imagePath}}/{{imageZoomName}}" rel="lightbox[diaporama]"><img src="{{imagePath}}/{{imageName}}" width="{{imageWidth}}" height="{{imageHeight}}" style="border:0px none; padding:5px;" /></a>
</atm-if>
<atm-if what="!{{imageZoomName}}">
<img src="{{imagePath}}/{{imageName}}" width="{{imageWidth}}" height="{{imageHeight}}" style="padding:5px;" />
</atm-if>
</block>
</row>
Vous voyez, rien de bien compliqué !!!