Parent: [462c18] (diff)

Child: [018793] (diff)

Download this file

post.html    18 lines (14 with data), 352 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{% extends g.theme.master %}
{% block title %}
{{c.project.name}} / {{c.app.config.options.mount_label}} / {{post.thread.subject or '(no subject)'}}
{% endblock %}
{% block header %}
{{post.thread.subject or '(no subject)'}}
{% endblock %}
{% block content %}
<div id="comment">
<ul>
{{c.post.display(value=post)}}
</ul>
</div>
{% endblock %}