I have been trying this code
#foreach ($blog in $blogList)
#set ($blogComment = $core_v2_comments.List("%{ ContentId : $blog.ContentId }"))
#set ($comment = $blogComment.get_item(0))
<tr>
<td>$blog.Name</td>
<td>$blog.Group.GroupType</td>
<td>$blog.PostCount</td>
<td>$blog.CommentCount</td>
<td>$blog.DateCreated</td>
<td>$comment.CreatedDate</td>
</tr>
#end
which is giving me same date value for all the blogs, which is actually wrong, so can anyone help me out with this