Here is an HTML template that generates a list of comments when rendered, or a No comments message if the list is empty.
<#if comments?size == 0>
<p>(1)__________</p>
<#else>
<#list comments as comment>
<div>
<a href="(2)__________">${comment.user.name}</a>
<p>(3)__________</p>
<p>${comment.time}</p>
</div>
(4)__________
</#if>
Match each number with the required code to complete the template.