user_comments.twig 592 B

1234567891011121314151617181920212223
  1. {% include 'header.twig' %}
  2. <div class="user_activity">
  3. {% for comment in comments %}
  4. <div>
  5. {{ comment.text|slice(0, 256)|markdown|raw }}
  6. {# Post info #}
  7. <div class="info">
  8. <a href="../post/{{ comment.postHashId }}#comment-{{ comment.hashId }}">read</a>
  9. <em>{{ comment.created|ago }}</em> on <a href="../post/{{ comment.postHashId }}">{{ comment.postTitle }}</a>
  10. </div>
  11. </div>
  12. {% endfor %}
  13. </div>
  14. {% include 'footer.twig' %}