<!DOCTYPE html>
<ui:html>
<head>
<title><ui:var select="$title"/></title>
<meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8"/>
</head>
<a href="">link</a>
<ui:define-component name="test">
<div clas="${class}">
<a href="${href}">${odd}
<ui:if test="${odd}">
click me once
<ui:else>click me twice</ui:else>
aaaaa
</ui:if>
</a>
</div>
</ui:define-component>
start loop
<ui:loop select="$arr" name="te">
<ui:if test="@te.odd">
<ui:else>
even
</ui:else>
odd
</ui:if>
<ui:component use="test" class="@te" href="http://www.w3labs.pl" odd="@te.odd" />
</ui:loop>
end loop
<body>
</body>
</ui:html>
|