Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

How to achieve currentPage.getContentResource("pagecontent/issue") on sightly?

Avatar

Level 4

I am new for HTL,

below code  works on JSP. How to achieve in sightly

currentPage.getContentResource("pagecontent/issue")

please help me how to read the property from "pagecontent/issue" node. The targeted node is issue.

Thanks in advance

1 Accepted Solution

Avatar

Correct answer by
Level 4

@Hemant Arora  : thanks for your reply.

The correct and short answer is

${pageProperties['pagecontent/issue']}

View solution in original post

2 Replies

Avatar

Level 9

Create a component.js and include that in your sightly html and then use the javascript-use api to get the content resource and assign it to a variable and use that variable in sightly. Refer to this example https://helpx.adobe.com/experience-manager/htl/using/use-api-javascript.html

Avatar

Correct answer by
Level 4

@Hemant Arora  : thanks for your reply.

The correct and short answer is

${pageProperties['pagecontent/issue']}