Template comments
You can add comments within your template. Template comments do not affect template output.
The syntax of a template comments is the following:
<%-- your comment here --%> You can use template comments
in template files, but not in String
literals that use template syntax.
For example:
My name is <%-- this is a comment --%>John.Rendering this template file produces:
My name is John.