comment.twig 565 B

123456789101112131415161718192021
  1. <div class="blog-comment {{comment.comment_type}}" id="blog-comment-{{comment.ID}}">
  2. <h5 class="comment-author">{{comment.author.name}} says</h5>
  3. <div class="comment-content">{{comment.comment_content|wpautop}}</div>
  4. <section class="comment-box">
  5. <!-- comment form -->
  6. {% include "comment-form.twig" %}
  7. <!-- child comments -->
  8. {% if post.comments %}
  9. <h4> replies </h4>
  10. <div class="comments">
  11. {% for cmt in comment.children %}
  12. {% include "comment.twig" with {comment:cmt} %}
  13. {% endfor %}
  14. </div>
  15. {% endif %}
  16. </section>
  17. </div>