ID: bf8097c8c539a95cd5e191db6395a64a3875642c
22 lines
โ
592B โ
View raw
| {% include 'header.twig' %}
<div class="user_activity">
{% for comment in comments %}
<div>
{{ comment.text|slice(0, 256)|markdown|raw }}
{# Post info #}
<div class="info">
<a href="../post/{{ comment.postHashId }}#comment-{{ comment.hashId }}">read</a>
โ
<em>{{ comment.created|ago }}</em> on <a href="../post/{{ comment.postHashId }}">{{ comment.postTitle }}</a>
</div>
</div>
{% endfor %}
</div>
{% include 'footer.twig' %}
|