<ISPLACEMENT>
is used to mark content within an ISML template that will be aggregated and moved to the according <ISPLACEHOLDER>
spots by the Web Adapter post-processing.
<ISPLACEMENT placeholderid = "( <String> | <ISML expression> )" > <String, HTML, ISML subset> </ISPLACEMENT>
Note
As ISML subset within <ISPLACEMENT>, the following ISML tags are allowed exclusively:
<isprint>
, <isif>
, <isset>
, <isloop>
, <isnext>
and <isbreak>
.
Use the <ISPLACEMENT>
tag to define a CSS reference that will be aggregated at the matching <ISPLACEHOLDER>
tag.
<ISPLACEMENT placeholderid="CSS"> <link rel="stylesheet" type="text/css" href="/css/shop.css" /> </ISPLACEMENT> <ISPLACEMENT placeholderid="CSS"> <link rel="stylesheet" type="text/css" href="/css/slider.css" /> </ISPLACEMENT>
Use the <ISPLACEMENT> tag to define content for the meta tag for keywords that will
be aggregated at the matching <ISPLACEHOLDER> tag.
<ISPLACEMENT name="keywords">Shirts</ISPLACEMENT> <ISPLACEMENT name="keywords"> <isprint value="#Product:Name#"> </ISPLACEMENT>
placeholderid
placeholderid = string | ISML expression
Specifies the ID of the placeholder this entry belongs to. The Web Adapters post-processing will insert the aggregated content of all <ISPLACEMENT>
tags with that placeholderid at the matching <ISPLACEHOLDER>
spot.