fix ajax display when posting first comment on a page

This commit is contained in:
codeshell 2017-10-30 12:53:13 +01:00
parent bd1799cc7e
commit ee89c2bdca
3 changed files with 11 additions and 16 deletions

View file

@ -2,14 +2,12 @@
{% set scope = scope ?: 'data.' %}
<section id="comments-section">
<h2>{{'PLUGIN_COMMENTS.COMMENTS'|t}}</h3>
<!-- <h2>{{ 'COMMENTS'|t }}</h2> -->
{% include 'partials/comments.form.html.twig' %}
{% if grav.twig.comments|length %}
<a class="comment-add-new" href="#"><i class="fa fa-plus" title="{{'PLUGIN_COMMENTS.ADD_NEW'|t}}"></i> {{'PLUGIN_COMMENTS.ADD_NEW'|t}}</a>
<div class="row comments">
{% include 'partials/comments.form.html.twig' %}
<div id="comments" class="row comments">
{% if grav.twig.comments|length %}
{% for comment in grav.twig.comments %}
<div class="comment comment-level-{{comment.level|e}}" data-level="{{comment.level}}" data-id="{{comment.id}}" >
<div class="comment-left">
@ -33,10 +31,7 @@
</div>
</div>
{% endfor %}
</div>
{% endif %}
{% endif %}
</div>
</section>
{% endif %}