home » zplus/freepost.git
ID: 0ec71e49dec68855f78929661fb74bfad10a31fe
27 lines — 695B — View raw


{% include 'header.twig' %}

<div class="reply">
    <h3>Reply to: {{ comment.postTitle }}</h3>
    
    <div class="info">
        by {{ comment.username }}
        <em>{{ comment.created|ago }}</em>
    </div>

    <div style="margin: 2em 0;">
        {{ comment.text|markdown|raw }}
    </div>

    <form action="" method="post">
        <input type="hidden" name="parent_comment" value="{{ comment.hashId }}" />
        
        <div style="margin: 2em 0;">
            <textarea name="text" class="form-control"></textarea>
        </div>

        <div>
            <input type="submit" class="btn btn-primary" value="Reply" />
        </div>
    </form>
</div>

{% include 'footer.twig' %}