I'm new to Sightly and AEM development and I'm trying to concatenate the following string href to play a video in a lightbox or open a PDF in a new window. As I'm trying to get this to work any suggestions would be greatly appreciated.
<sly data-sly-test="${details.videoPlayingOptions != 'vlp-video'}">
<a href="${details.pagePath} || '#' || '${gatherInsight.videoLandingPagePath}?vid=${details.videoID}'" class="cta-lightbox" data-videoid="${details.videoID}" target="${details.contentType == 'PDF' ? '_blank' : '_self'}">${details.title}</a>
</sly>
Thank you