Sometimes you need get data from ADT to template (or the other way round)
We often need the viewURL to link to full content. You can add attributes to the request in the ADT:
${request.setAttribute("viewURL", viewURL )}
Read them in the webcontent template:
<#assign viewURL = request.attributes.viewURL!"" >
Don't forget to clean up!
${request.setAttribute("viewURL", "" )}