home ยป zplus/freepost.git
ID: aabafe9ef0cd1f6d070f385867a032536f6dc98f
23 lines โ€” 840B โ€” 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> <time title="{{ comment.created|title }}" datetime="{{ comment.created|datetime }}"><em> {{ comment.created|ago }} </em></time> on <a href="../post/{{ comment.postHashId }}">{{ comment.postTitle }}</a>
            </div>
        </div>
        
    {% endfor %}

</div>
        
{% include 'footer.twig' %}