You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
883 B

  1. <ul class="comments">
  2. {% for comment in comments %}
  3. <li class="comment">
  4. <div class="comment-thumbnail">
  5. <a href="{{ url_for('.user', username=comment.author.username) }}">
  6. <img class="img-rounded profile-thumbnail" src="{{ comment.author.gravatar(size=40) }}">
  7. </a>
  8. </div>
  9. <div class="comment-content">
  10. <div class="comment-date">{{ moment(comment.timestamp).fromNow() }}</div>
  11. <div class="comment-author"><a href="{{ url_for('.user', username=comment.author.username) }}">{{ comment.author.username }}</a></div>
  12. <div class="comemnt-body">
  13. {% if comment.body_html %}
  14. {{ comment.body_html | safe }}
  15. {% else %}
  16. {{ comment.body }}
  17. {% endif %}
  18. </div>
  19. </div>
  20. </li>
  21. {% endfor %}
  22. </ul>