ID: 71a252a510b76729c239c25088492abc89dc322b
23 lines
โ
747B โ
View raw
| {% include 'header.twig' %}
<div class="user_activity">
{% for comment in replies %}
<div>
{{ comment.text|slice(0, 256)|markdown|raw }}
{# Post info #}
<div class="info">
<a href="../post/{{ comment.postHashId }}#comment-{{ comment.hashId }}">read</a>
<a href="../reply?comment={{ comment.hashId }}">reply</a>
โ
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>
</div>
</div>
{% endfor %}
</div>
{% include 'footer.twig' %}
|