freepost codebase git repo

[[ 🗃 ^Avlxv freepost ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/Avlxv

SSH: git clone USERNAME@vervis.peers.community:Avlxv

Branches

Tags

master :: template /

user_replies.twig

{% 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 }}">{{ comment.username }}</a> <em>{{ comment.created|ago }}</em> on <a href="../post/{{ comment.postHashId }}">{{ comment.postTitle }}</a>
            </div>
        </div>
        
    {% endfor %}

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

[See repo JSON]