HTL in AEM | AEM Community Blog Seeding | Community
Skip to main content
kautuk_sahni
Community Manager
Community Manager
January 5, 2021

HTL in AEM | AEM Community Blog Seeding

  • January 5, 2021
  • 0 replies
  • 748 views

BlogImage.jpg

HTL in AEM by All AEM By Kiran Vedantam

Abstract

As you already know keeping the business logic separate from the view is the best practice which AEM suggests. In this post, we are going to discuss on the VIEW part which is HTML Template Language (HTL Formerly Known As Sightly).

Below is the list of HTL tags that can be used in different scenarios. Happy & fast coding 😁.
:
This tag is used to remove the current element, allowing only its children to be displayed.


Checking the mode in HTL: Below command checks if the mode = edit, if true shows the p tag.

This is EDIT Mode



Accessing a Model object in HTL:


Accessing Model values via Model object: The modelValue will generally be the dialog value authored.
${modelObject.modelValue}

Accessing List values from Model object:
Using LIST tag:
${listObject.firstListValue}

Using REPEAT tag:
${item.name}
Note: List needs a container [here the
tag] element and Repeat does not need it

Read Full Blog

HTL in AEM

Q&A

Please use this thread to ask the related questions.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.