mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
468df23801
Update theme to new look and feel Add jquery-validate 1.3.1 (w/ nz dst patch)
24 lines
575 B
Scheme
24 lines
575 B
Scheme
<% if $RepliesEnabled %>
|
|
<div class="comment-replies-container">
|
|
|
|
<div class="comment-reply-form-holder">
|
|
$ReplyForm
|
|
</div>
|
|
|
|
<div class="comment-replies-holder">
|
|
<% if $Replies %>
|
|
<ul class="comments-list level-{$Depth}">
|
|
<% loop $Replies %>
|
|
<li class="comment $EvenOdd<% if FirstLast %> $FirstLast <% end_if %> $SpamClass">
|
|
<% include CommentsInterface_singlecomment %>
|
|
</li>
|
|
<% end_loop %>
|
|
</ul>
|
|
<% with $Replies %>
|
|
<% include ReplyPagination %>
|
|
<% end_with %>
|
|
<% end_if %>
|
|
</div>
|
|
</div>
|
|
<% end_if %>
|