Parent: [7a5e8f] (diff)

Child: [a6d42a] (diff)

Download this file

post.html    22 lines (18 with data), 603 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
{% 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>
Version:
<a href="?version=1">&lt;&lt;</a>
<a href="?version={{post.version-1}}">&lt;</a>
{{post.version}}
<a href="?version={{post.version+1}}">&gt;</a>
<a href=".">&gt;&gt;</a>
</div>
{{c.post.display(value=post)}}
{% endblock %}