2017-01-16 20:57:37 +01:00
|
|
|
<% if $RepliesEnabled %>
|
|
|
|
<div class="comment-replies-container">
|
|
|
|
|
|
|
|
<% if $canPostComment %>
|
|
|
|
<div class="comment-reply-form-holder">
|
|
|
|
$ReplyForm
|
|
|
|
</div>
|
|
|
|
<% end_if %>
|
|
|
|
|
|
|
|
<div class="comment-replies-holder">
|
|
|
|
<% if $Replies %>
|
|
|
|
<ul class="comments-list level-{$Depth}">
|
|
|
|
<% loop $Replies %>
|
2022-11-28 21:35:55 +01:00
|
|
|
<li class="comment $EvenOdd<% if $FirstLast %> $FirstLast <% end_if %> $SpamClass">
|
2017-01-16 20:57:37 +01:00
|
|
|
<% include CommentsInterface_singlecomment %>
|
|
|
|
</li>
|
|
|
|
<% end_loop %>
|
|
|
|
</ul>
|
|
|
|
<% with $Replies %>
|
|
|
|
<% include ReplyPagination %>
|
|
|
|
<% end_with %>
|
|
|
|
<% end_if %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end_if %>
|