Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save heervisscher/17c4678386c13c7d0c4e0de62f661da1 to your computer and use it in GitHub Desktop.
Save heervisscher/17c4678386c13c7d0c4e0de62f661da1 to your computer and use it in GitHub Desktop.
HTL example with condition markup
<div data-sly-list="${currentPage.listChildren}">
<sly data-sly-test="${itemList.first}" data-sly-call="${firstDiv}"/>
${item.title}
<sly data-sly-test="${itemList.last}" data-sly-call="${lastDiv}"/>
</div>
<template data-sly-template.firstDiv>
<div>
</template>
<template data-sly-template.lastDiv>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment