user_replies.twig 747 B

123456789101112131415161718192021222324
  1. {% include 'header.twig' %}
  2. <div class="user_activity">
  3. {% for comment in replies %}
  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. <a href="../reply?comment={{ comment.hashId }}">reply</a>
  10. by <a href="../user/{{ comment.username|url_encode }}">{{ comment.username }}</a> <em>{{ comment.created|ago }}</em> on <a href="../post/{{ comment.postHashId }}">{{ comment.postTitle }}</a>
  11. </div>
  12. </div>
  13. {% endfor %}
  14. </div>
  15. {% include 'footer.twig' %}